以下代码显示每个选项卡标题的图标。
Ext.define("MyAPP.view.Main", {
extend : 'Ext.tab.Panel',
config : {
tabBarPosition : 'bottom', // <--- Line of interest
items : [{
title: "Contacts",
iconCls: "team",
}]
}
});
请参见下面的示例。
但是,如果我将其更改tabBarPosition: 'top'
为看不到任何图标。整个风格变了。
标签栏位置位于顶部时如何显示图标?