Blame view

js/app/controllers/StatisticsModule.js 985 Bytes
d18b535d   elena   catalog draft + c...
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
44
45
/**
 * Project   AMDA-NG
 * Name      StatisticsModule.js
 * @class    amdaDesktop.StatisticsModule
 * @extends  amdaDesktop.InteractiveModule
 * @brief    Statistics Module controller definition 
 * @author   elena
 */

Ext.define('amdaDesktop.StatisticsModule', {
	extend: 'amdaDesktop.InteractiveModule',
	
	 requires: [
         'amdaUI.StatisticsUI'
     ],
     
      contentId : 'statisticsUI',
      
    /**
     * @cfg {String} data models
     * @required
     */
	nodeDataModel : 'amdaModel.StatisticsNode',
	objectDataModel : 'amdaModel.Statistics',
    /**
     * @cfg {String} window definitions
     * @required
     */
	width : 550,
	height: 550,
	uiType : 'panelStatistics',
	helpTitle : 'Help on Statistics Module',
	helpFile : 'statisticsHelp',
    /**	
     * @override
     */
    createWindow : function() {
        if (!this.linkedNode){
            this.setLinkedNode(amdaModel.StatisticsNode);
        }
        this.callParent(arguments);
    },	
	
		
});