Is there a way to change the style of a Ext.tab.Panel
element using inline CSS structure like how it's done for a xtype: button
element?
{
xtype: "button",
itemId: "imageUploadButton1",
text: "Uploader",
style: {
background : '#C81820'
}
}
I'm wondering if it's possible to write the tab-panel's header style in JSON format. Here is an example of my tabpanel's structure:
{
xtype:"tabpanel",
activeTab:0,
items:[{
xtype:"panel",
title:"SHOPABLE IMAGES",
},{
xtype:"panel",
title:"LAYOUT SETTINGS"
},{
xtype:"panel",
title:"HOTSPOT SETTINGS"
}]
}
Appreciate any guidance on this. Thank you.