我在这里有工作代码:
var panel = Ext.create('Ext.tab.Panel', {
width: 500,
height: 300,
activeTab: 1, //sets active tab (2nd)
title: 'Specific Data',
floating: true, // make this panel an absolutely-positioned floating component
items: [{
title: 'Tab 1',
html: 'data data data'
}, {
title: 'Tab 2',
html: 'different data'
}]
});
我正在尝试添加一个工具栏(或按钮,不确定我应该使用哪个)来添加一个简单的“关闭窗口”命令。有什么帮助吗?