ParameterModule.js
1.17 KB
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
43
/**
* Project : AMDA-NG4
* Name : ParameterModule.js
* @class amdaDesktop.ParameterModule
* @extends amdaDesktop.InteractiveModule
* @brief Parameter Module controller definition
* @author CDA
* @version $Id: ParameterModule.js 1308 2013-03-01 08:15:09Z myriam $
* @todo helpTitle
*******************************************************************************
* FT Id : Date : Name - Description
*******************************************************************************
* : :08/06/2011: CDA - Migration extjs4
* : :09/06/2011: elena - all generic methods are now of InteractiveModule class
*/
Ext.define('amdaDesktop.ParameterModule', {
extend: 'amdaDesktop.InteractiveModule',
requires: [
'amdaUI.ParameterUI'
],
contentId : 'paramUI',
/**
* @cfg {String} data model
* @required
*/
nodeDataModel : 'amdaModel.DerivedParamNode',
uiType : 'panelParam',
helpTitle : 'Help on Parameter Module',
helpFile : 'parameterHelp',
/**
* override the non applicable receiption method
*/
addTT : function(ttname,ttid) {
//this module has nothing to do with a TT sent from WsExplorer
}
});