Just add a new style to the TabLayoutPanel:
this.addStyleName("tab-style-content");
And define in your CSS as:
.tab-style-content .gwt-TabLayoutPanelContent
{
overflow: auto;
}
This way, the property overflowwill be overwritten in gwt-TabLayoutPanelContent, and the scroll bar will be shown automatically.
source
share