The following code shows icon for each tab title.
Ext.define("MyAPP.view.Main", {
extend : 'Ext.tab.Panel',
config : {
tabBarPosition : 'bottom', // <--- Line of interest
items : [{
title: "Contacts",
iconCls: "team",
}]
}
});
See sample bellow.
But If I change it to tabBarPosition: 'top'
no icon is seen. Whole style changed.
How can I show icons when tab bar position is top?