/** * Project  : AMDA-NG * Name : MyDataModule.js * @class amdaDesktop.MydataModule * @extends amdaDesktop.InteractiveModule * @brief MyData Module controller definition * @author Elena * @version $Id: MyDataModule.js 2683 2014-12-02 10:58:53Z elena $ */ Ext.define('amdaDesktop.MyDataModule', { extend: 'amdaDesktop.InteractiveModule', requires: [ 'amdaUI.MyDataUI' ], contentId : 'mydataUI', /* * @cfg {String} data models * @required */ objectDataModel : 'amdaModel.FileParamObject', nodeDataModel : 'amdaModel.MyDataParamNode', /* * @cfg {String} window definitions * @required */ width: 600, height: 550, uiType : 'panelMyData', helpTitle : 'Help on MyData Module', helpFile : 'uploadDataHelp', init : function() { //force the launcher to null to don't add this item on start menu this.launcher = null; } });