gpt4 book ai didi

extjs - 在 extjs 的选项卡面板的标题中添加按钮

转载 作者:行者123 更新时间:2023-12-05 03:09:46 24 4
gpt4 key购买 nike

我在 Extjs 中添加了一个选项卡面板。当我点击第二个选项卡时,我想在选项卡面板的标题区域看到一个组件,在图像下方的红色标记处。 enter image description here

最佳答案

对于 tabpanel 组件遵循另一个建议:

Ext.application({
name : 'TabPanelHeaderButton',

launch : function() {

Ext.create('Ext.tab.Panel', {
width: 400,
height: 400,
renderTo: document.body,
items: [{
title: 'Foo'
},{
title: 'Foo 1'
}],
tabBar: {
items: [{
xtype: 'tbfill'
},{
xtype: 'button',
text: 'Button',
padding: '3px',
margin: '2px 5px 2px 2px',
handler: function(){
alert ('Button click')

}
}]
}
});

}
});

关于extjs - 在 extjs 的选项卡面板的标题中添加按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41821687/

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