I am trying to create a tab bar where I can add and remove tabs on demand.
Where I am stuck is that if a potential user adds too many tabs, new tabs go off the screen.
Each tab should contain a text area widget in which the user can enter text.
Is there a way to horizontally scroll only the TabBar and not the entire browser window?
I could use the scroll bar, but I was hoping to scroll only the tabs, not the contents of the bar.
I do not see any method available in com.google.gwt.user.client.ui.TabPanel API that will perform this function and cannot split the panel.
Help!
source
share