我正在用 Sencha-touch 编写一个应用程序。我在标签面板中有 3 个标签。我希望每个都占据标签面板宽度的 33%。我尝试使用resizeTabs
, tabWidth
,甚至为每个项目添加了一个类,然后在 css 中引用它来更改宽度。
然后我还尝试在 html 中使用 span 元素并引用它。但这些都不起作用。我的代码如下。如何更改选项卡面板中选项卡的宽度?
{
xtype: 'tabpanel',
fullscreen: true,
tabBarPosition: 'top',
resizeTabs: true,
tabWidth: '33%',
items:[
{
//title: 'Campus List',
html: '<span class="headerTab">Campus List</span>',
width: '33%',
cls: 'headerTab'
},
{
title: 'Meter List',
html: 'Meter List',
width: '33%',
cls: 'headerTab'
},
{
title: 'Meter',
html: 'Meter',
width: '33%',
cls: 'headerTab'
}
]
}