我有一个可以正常工作的网格。现在我需要将此 GRID 添加到第一个选项卡面板。我怎样才能做到这一点?
我的代码:
网格.JS
Ext.create('Ext.grid.Panel', {
xtype:'grid',
title: 'Simpsons',
store: Ext.data.StoreManager.lookup('simpsonsStore'),
columns: [
{ header: 'Name', dataIndex: 'name' },
{ header: 'Email', dataIndex: 'email', flex: 1 },
{ header: 'Phone', dataIndex: 'phone' }
],
height: 200,
width: 400,
renderTo: Ext.getBody()
});
选项卡
Ext.create('Ext.tab.Panel', {
width: 300,
height: 200,
activeTab: 0,
items: [
{
title: 'Tab 1',
xtype:'grid'
},
{
title: 'Tab 2',
html : 'Another one'
}
],
renderTo : Ext.getBody()
});
我已经xtype:grid
在 GRID.JS 中添加了,我正在尝试从第一个选项卡中的 TAB.JS 访问该网格,但它没有显示出来。