1

我在 tabPanel 上有一个选项卡列表,我想在其上添加另一个选项卡,当条件为真时,这可能吗,如果是,请告诉我该怎么做。前任。Mycontroller 页面中的代码是:

mylist:funtion()
{
 if(mylist[0]=='Deployment_model')
 { 
 Ext.getCmp('') //here i want that one tab should me added on the view page
 }
 else{
  //do something
  }
},
4

1 回答 1

1

您只需将另一个项目添加到选项卡式面板。看看这个小提琴:http ://www.senchafiddle.com/#5j3yu

Ext.getCmp("mytabpanel").add({
                                title: 'New',
                                iconCls: 'action',

                                items: [
                                    {
                                        docked: 'top',
                                        xtype: 'panel',
                                        html: 'This is new content'
                                    }
                                ]
                            });
于 2013-02-21T12:00:47.493 回答