Blame view

js/app/controllers/StatisticsModule.js 1.37 KB
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
/**
 * 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',
e63ad8ec   Nathanael Jourdane   Fix the mysteriou...
24
	objectDataModel : 'amdaModel.Stats',
d18b535d   elena   catalog draft + c...
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
    /**
     * @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);
d80af896   Elena.Budnik   args for Statistics
42
43
44
45
    },
	 
	 saveState: function() {
            var uiContent = this.getUiContent();               
7348b580   Elena.Budnik   redmine #6010 : S...
46
47
            var form = uiContent.formPanel.items.items[1].getForm();
            var values = form.getValues();
d80af896   Elena.Budnik   args for Statistics
48
49
50
            Ext.state.Manager.set('timeinterval', {'startDate' : values.startDate,'stopDate' : values.stopDate });
    },
       
7348b580   Elena.Budnik   redmine #6010 : S...
51
    getState : function() {
d80af896   Elena.Budnik   args for Statistics
52
53
        return Ext.state.Manager.get('timeinterval'); 
    }
d18b535d   elena   catalog draft + c...
54
55
		
});