任何人都可以建議我,爲什麼iconCls未在標籤面板酒吧工作時,標籤欄泊松是煎茶觸摸頂部2.iconCls不工作標籤面板欄possition是頂級
它正常工作時,標籤欄possiton是底部。 爲什麼當標籤欄位置最高時它不工作?
Ext.create('Ext.TabPanel', {
fullscreen: true,
tabBarPosition: 'top',
defaults: {
styleHtmlContent: true
},
items: [
{
title: 'Home',
iconCls: 'home',
html: 'Home Screen'
},
{
title: 'Contact',
iconCls: 'user',
html: 'Contact Screen'
}
]
});
輸出上面的代碼:
任何人都可以,爲什麼它不是在頂部possition工作 感謝:以上代碼的
Ext.create('Ext.TabPanel', {
fullscreen: true,
tabBarPosition: 'bottom',
defaults: {
styleHtmlContent: true
},
items: [
{
title: 'Home',
iconCls: 'home',
html: 'Home Screen'
},
{
title: 'Contact',
iconCls: 'user',
html: 'Contact Screen'
}
]
});
輸出提前。