Ext.define('phpdoe.view.main' ,{ extend: 'Ext.container.Viewport', id : 'main-app', layout: 'border', items: [ Ext.create('Ext.toolbar.Toolbar', { region : 'north', height : 30, items: [ Ext.create('phpdoe.view.main.menu'), '->', // same as { xtype: 'tbfill' } Ext.create('Ext.toolbar.TextItem', { width: 200, text: '

' + '  ' + config.NAME + '

' }) ] }), Ext.create('phpdoe.view.main.navigate', { region: 'west', id: 'navigate', //animCollapse : true, header: false, split: true, collapsed: false, collapsible: true, collapseMode: 'mini', width: config.user.conf.main.mainMenuWidth || 300 }), Ext.create('phpdoe.view.main.tabs', { id: 'main-panel', region: 'center' }) ] });