87,990
社区成员
发帖
与我相关
我的任务
分享
Ext.onReady(function () {
Ext.QuickTips.init();
// tab panel property
new Ext.TabPanel({
renderTo: 'tabpanel',
activeTab: 0,
defaults: { autoScroll: true },
items: [{
xtype: 'grid',
store: new Ext.data.Store({....}),
columns: [...]
},
{
xtype: 'grid',
store: new Ext.data.Store({....}),
columns: [...]
}
]
});
// end ext function
});