gpt4 book ai didi

Extjs4 tabpanel,禁用所有子项而不循环它们

转载 作者:行者123 更新时间:2023-12-01 11:03:11 25 4
gpt4 key购买 nike

有什么方法可以禁用 Extjs4 选项卡面板上的所有子项,而不循环它们。

我的代码:

var myPanel = new Ext.TabPanel({
region: 'east',
title: 'my panel title',
width: 200,
id: 'my-panel',
split: true,
collapsible: true,
collapsed: true,
floatable: true,
xtype: 'tabpanel',
items: [
Ext.create('Ext.panel.Panel', {
id: 'my-detail-panel',
title: 'My Info',
autoScroll: true,
file: false,
type: 'vbox',
align: 'stretch',
tpl: myDetailsTpl
}),
Ext.create('Ext.panel.Panel', {
id: 'my-more-detail-panel',
title: 'My more info',
autoScroll: true,
file: false,
type: 'vbox',
align: 'stretch',
tpl: myMoreDetailsTpl
})
]
});

我需要禁用 myPanel 的所有子项,但仍需要“myPanel”保持启用状态。

最佳答案

myPanel.items.each(function(c){c.disable();})

然后

myPanel.items.each(function(c){c.enable();})

再次激发他们。

循环,但它没有使用“for 循环”,因为我认为这个问题是要说明的。

关于Extjs4 tabpanel,禁用所有子项而不循环它们,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8816501/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com