将Formpanel渲染为Tabpanel

时间:2014-10-09 13:14:19

标签: extjs tabpanel formpanel

我有两个带有不同ExtJS formpanel的.js文件,我将onReady()重新编入HTML文件中的DIV:

myPanel.render( 'myDiv' );

我想将它们添加/渲染到tabpanel。

有一种简单的方法吗? 如果是这样,怎么样?

谢谢,Stef

1 个答案:

答案 0 :(得分:0)

喜欢这样吗?

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'});