0

在网格面板中我有值,当我单击网格值时,它应该在同一个网格面板中的新选项卡中打开,其中包含与网格值相关的数据

4

1 回答 1

0

如果我正确地关注您,那么itemclick:function(){}您可以在您的内部尝试此代码以打开一个新标签

  Ext.getCmp('tabpanel_id').add({
        title: 'New Tab',
        layout:'fit',
        closable: true,
        items:[

           //stuff inside tab panel

        ]
    }).show();
于 2012-05-22T22:51:27.427 回答