CatalogModule.js
702 Bytes
/**
* Project AMDA-NG
* Name CatalogModule.js
* @class amdaDesktop.CatalogModule
* @extends amdaDesktop.InteractiveModule
* @brief Catalog Module controller definition
* @author elena
*/
Ext.define('amdaDesktop.CatalogModule', {
extend: 'amdaDesktop.InteractiveModule',
requires: [
'amdaUI.CatalogUI'
],
contentId : 'catalogUI',
/**
* @cfg {String} data models
* @required
*/
nodeDataModel : 'amdaModel.CatalogNode',
/**
* @cfg {String} window definitions
* @required
*/
width : 800,
height: 700,
uiType : 'panelCatalog',
helpTitle : 'Help on Catalog Module',
helpFile : 'catalogHelp'
});