我想要一个带有 TabPanel 的视图,并在带有两张卡片的 Carousel 内查看。
像这样:
var view = Ext.define("abril16.view.Main2", {
extend: 'Ext.tab.Panel',
requires: ['Ext.TitleBar', 'Ext.carousel.Carousel'],
config: {
tabBarPosition: 'bottom',
items: [{
title: 'Home',
iconCls: 'home',
styleHtmlContent: true,
scrollable: true,
layout: 'fit',
flex: 1,
items: {
docked: 'top',
xtype: 'titlebar',
title: 'Beetoom',
},
},
{
title: 'Discover',
iconCls: 'action',
scrollable: true,
items: [{
docked: 'top',
xtype: 'titlebar',
title: 'Select',
layout: 'fit',
flex: 1,
},
{
docked: 'top',
xtype: 'titlebar',
title: 'Discover',
},
{
xtype: 'carousel',
items: [{
xtype: 'checkboxfield',
name: 'Hola',
label: 'Hola'
},
{
xtype: 'checkboxfield',
name: 'Action',
label: 'Adventure'
}
]
}
]
}
]
}
});
问题是这里什么都没有发生。没有语法错误,但没有显示布局,而是轮播我在面板内有一个空白背景。
非常感谢。