Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在网格面板中我有值,当我单击网格值时,它应该在同一个网格面板中的新选项卡中打开,其中包含与网格值相关的数据
如果我正确地关注您,那么itemclick:function(){}您可以在您的内部尝试此代码以打开一个新标签
itemclick:function(){}
Ext.getCmp('tabpanel_id').add({ title: 'New Tab', layout:'fit', closable: true, items:[ //stuff inside tab panel ] }).show();