我正在创建一个煎茶触摸应用程序,该设计需要标签栏中的分段按钮。
有没有一种简单的方法可以使用 sencha 内置功能来做到这一点,还是我必须自己创建(添加带有分段按钮的工具栏作为项目并创建所有控件以实际获得相同的东西)?
extend: 'Ext.TabPanel',
requires: [
'Ext.SegmentedButton',
],
xtype: 'album',
id: 'album',
fullscreen: true,
config: {
tabBar: {
layout: {
pack: 'center',
},
items: {
xtype: 'segmentedbutton',
allowDepress: false,
listeners: {
initialize: function() {
Ext.SegmentedButton.implement({
setActive: function(activeItem) {
this.setActiveItem(activeItem);
}
});
}
}
}
},
autoDestroy: true,
activeItem: 1,
items: [
{
title: 'HIGHLIGHTS',
xtype: 'highlightview',
id: 'highlightView'
},
{
title: 'KATEGORIEN',
xtype: 'categoryView',
id: 'categoryView',
},
{
title: 'SUCHE',
xtype: 'searchView',
id: 'searchView',
}
],
}
这就是我到目前为止所尝试的。侦听器可以解决 的错误[Object] Object has no method 'setActive'
,但不会导致我希望它具有的行为。