我有两个带有不同ExtJS表单面板的.js文件,我将其重新命名为HTML文件中的div:
myPanel.render( 'myDiv' );
我想将它们添加/呈现到选项卡面板中。
有简单的方法吗?如果是,怎么做?
谢谢,Stef
这样吗?
Ext.define('MyApp.view.MyTabPanel', {
extend: 'Ext.tab.Panel',
alias: 'widget.MyTabPanel',
itemId: 'MyTabPanel',
items: [
{
xtype: 'panel',
title: 'Tab panel with the form',
items: [myPanel] //the form panel
}
]
});
//...
Ext.widget('MyTabPanel', { renderTo: 'myDiv'});