如何在ExtJs中的标签栏中动态添加tbar

dy1byipe  于 2022-11-05  发布在  其他
关注(0)|答案(1)|浏览(180)

我需要在tabpanel的第二个选项卡中动态添加tbar(不想在tbar中动态添加项目,但需要根据某些条件添加tbar,否则它应该不会被添加),下面是我的代码:

var wind = Ext.create("Ext.Window", {
                        modal: true,
                        scrollable: true,
                        items: [
                            {
                                margin: '0 0 0 10',
                                xtype: 'tabpanel',
                                reference: "MainTab",
                                plain: true,
                                resizeTabs: true,
                                flex: 1,
                                border: 3,
                                items: [
                                    {
                                        title: "Messages",
                                        rootTab: true,
                                        items: [{
                                           // item
                                        }] }, {    
                                        title: "Alarms",
                                        items: [{
                                                 //item,
                                        }],
                                        tbar: // need to add this tbar dynamically
                                        }]

我尝试过使用dockedItems来使用initComponent,但不起作用。

lmyy7pcs

lmyy7pcs1#

下面的小提琴使用的是现代的,但应该是类似的经典。它只是调用了控制器上的init函数。
Here is a fiddle
小提琴编辑版

相关问题