gpt4 book ai didi

extjs - 如何在ExtJS 4中隐藏选项卡

转载 作者:行者123 更新时间:2023-12-04 13:14:39 25 4
gpt4 key购买 nike

如何在ExtJS 4中隐藏选项卡?
Ext.getCmp(“mytab”)。hide()不起作用
谁能帮我?

最佳答案

在此处阅读文档:http://docs.sencha.com/ext-js/4-0/#!/api/Ext.tab.Panel

他们给出了如何隐藏标签页的具体示例

从链接中提取:

    var tabs = Ext.create('Ext.tab.Panel', {
width: 400,
height: 400,
renderTo: document.body,
items: [{
title: 'Home',
html: 'Home',
itemId: 'home'
}, {
title: 'Users',
html: 'Users',
itemId: 'users',
hidden: true
}, {
title: 'Tickets',
html: 'Tickets',
itemId: 'tickets'
}]
});
setTimeout(function () {
tabs.child('#home')
.tab.hide();
var users = tabs.child('#users');
users.tab.show();
tabs.setActiveTab(users);
}, 1000);

关于extjs - 如何在ExtJS 4中隐藏选项卡,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7972312/

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