Blame view

js/app/controllers/VisuModule.js 720 Bytes
5cfea1f2   elena   vizu draft
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
/**
 * Project   AMDA-NG
 * Name      VisuModule.js
 * @class    amdaDesktop.VisuModule
 * @extends  amdaDesktop.InteractiveModule
 * @brief    Visualization Module controller definition 
 * @author   elena
 */

Ext.define('amdaDesktop.VisuModule', {
	extend: 'amdaDesktop.InteractiveModule',
	
	 requires: [
         'amdaUI.VisuUI'
     ],
     
      contentId : 'visuUI',
      
    /**
     * @cfg {String} data models
     * @required
     */
	nodeDataModel : 'amdaModel.CatalogNode', //  'amdaModel.MyDataNode'
	
    /**
     * @cfg {String} window definitions
     * @required
     */
	width : 800,
	height: 700,
	uiType : 'panelVisu',
	helpTitle : 'Help on Visualization Module',
	helpFile : 'visuHelp'
		
});