GXT 3 has a function, which adds a tab to tabpanel
tabPanel.add(html, new TabItemConfig(title, true));
I have to change style of the name of this tab and also contents. These have no effect:
tabPanel.setStyleName("tab-title", true);
html.setStyleName("tab-title", true);
TabItemConfig has no method to change style. How to achieve?...