Ext.define("Compass.ErpApp.Desktop.Applications.<%=class_name %>",{ extend:"Ext.ux.desktop.Module", id:'<%=file_name %>-win', init : function(){ this.launcher = { text: '<%=description %>', iconCls:'<%=icon %>', handler: this.createWindow, scope: this } }, createWindow : function(){ var desktop = this.app.getDesktop(); var win = desktop.getWindow('<%=file_name %>'); if(!win){ win = desktop.createWindow({ id: '<%=file_name %>', title:'<%=description %>', width:1000, height:550, iconCls: '<%=icon %>', shim:false, animCollapse:false, constrainHeader:true, layout: 'fit', items:[] }); } win.show(); } });