Sha256: ba7803474d256b2431eacee0a0499cf017db2510353cf9e6be727b72a933e37d
Contents?: true
Size: 1.67 KB
Versions: 3
Compression:
Stored size: 1.67 KB
Contents
Ext.define('FastUI.view.Viewport', { extend:'Ext.container.Viewport', id:'port', layout:'border', items:[ { height:43, html:"<div class=\'fastui-header\'><span class=\'caption\'>"+ app_project +"</span><span class=\'version\'>("+ app_version +")</span></div>", region:"north", split:true, xtype:"component" }, { region:"west", activeTab:0, collapseMode:"mini", collapsible:true, split:true, width:295, defaults:{border:false}, items:[Ext.create('FastUI.view.VMenu'),{title:'Help',iconCls:'fastui-btn-help'}], xtype:"tabpanel" }, { region:"south", border:false, height:28, items:[{xtype:"tbfill"},{style:"font-weight:bold",text:app_copyright ,xtype:"tbtext"}], xtype:"toolbar" }, { id:'mycenter', region: 'center', xtype: 'tabpanel', // TabPanel itself has no title activeTab: 0, // First tab active by default //maskOnDisable: false, items: [{ title: 'Home', iconCls:'fastui-home', border:false, html: 'The first tab\'s content. Others may be added dynamically' }] } ], listeners: { afterrender: function() { var mask = Ext.get('fastui-loading'); mask.fadeOut({callback: function(){ mask.destroy(); }}); } } });
Version data entries
3 entries across 3 versions & 1 rubygems