MyDataModule.js
987 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/**
* Project : AMDA-NG
* Name : MyDataModule.js
* @class amdaDesktop.MydataModule
* @extends amdaDesktop.InteractiveModule
* @brief MyData Module controller definition
* @author Elena
* @version $Id: MyDataModule.js 2683 2014-12-02 10:58:53Z elena $
*/
Ext.define('amdaDesktop.MyDataModule', {
extend: 'amdaDesktop.InteractiveModule',
requires: [
'amdaUI.MyDataUI'
],
contentId : 'mydataUI',
/*
* @cfg {String} data models
* @required
*/
objectDataModel : 'amdaModel.FileParamObject',
nodeDataModel : 'amdaModel.MyDataParamNode',
/*
* @cfg {String} window definitions
* @required
*/
width: 600,
height: 550,
uiType : 'panelMyData',
helpTitle : 'Help on MyData Module',
helpFile : 'uploadDataHelp',
init : function() {
//force the launcher to null to don't add this item on start menu
this.launcher = null;
}
});