Sha256: 46811c606c9d9c90938f4f0019a87fe4f67a0b472034198583232db2b5f58d73
Contents?: true
Size: 951 Bytes
Versions: 35
Compression:
Stored size: 951 Bytes
Contents
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(); } });
Version data entries
35 entries across 35 versions & 1 rubygems