這我的代碼,而只顯示該樹面板(請幫我):如何把樹面板中視區的Ext JS 4
Ext.define(「用戶」,{ 擴展:' Ext.data.Model', fields:['name'] });
var tree = Ext.create('Ext.tree.Panel', { height: 300, renderTo: Ext.getBody(), width: 300, region: 'east', columns: [ {dataIndex: 'name', flex: 1, header: 'Tree Panel', xtype: 'treecolumn'} ], store: { model: 'User', root: { name: 'Rumah', children: [ {name: 'Gavin Renaldi', children: [{name: 'Benar Sekali', age: 2, children: []}]}, {name: 'Gavin Ripharbowo', children: []} ] } }, viewConfig: { plugins: { ddGroup: 'user-dd', ptype: 'treeviewdragdrop' } } });
Ext.onReady(函數(){
Ext.create( 'Ext.container.Viewport',{ 佈局: '邊界', 項目:[{ 區域: '北' , HTML: '頁面標題', autoHeight:真, 邊界:假的,寬度:100,高度:100, 邊距: '0 0 5 0'
}, { region: 'west', collapsible: false, html: '<h1 class="x-panel-header">Page Title</h1>', title: 'Navigation', width: 150, height:100, items:'tree' // could use a TreePanel or AccordionLayout for navigational items }, { region: 'center', xtype: 'tabpanel', // TabPanel itself has no title activeTab: 0, // First tab active by default items: [{ title: 'First Tab', html: 'For A While', },{ title: 'Second Tab', html : 'The Second Tab Content' }] }] }) })
感謝您的答案,但我已經通過將樹視圖插入視口來解決問題 – 2012-02-08 06:20:59