At the moment i need provide the possibility to add new tab dynamically.
The UI pattern that i would like to provide is equals to the firefox “Open a new tab” option - A button, with
+ caption, at the end of all tab captions.
Maybe when this button was clicked, an event may be fired… something like…
public void getNewTabComponent(Event event) {
if (canAddNewtab()) {
return createMayNewComponentTab();
}
return null;
}
I didn’t worked with the TabSheet yet… but if it have a listenner you can make a tab with “+” and when you click it, you create a new tab and show it… I will try that latter ok!?
It also a good idea to add a feature request ticket to the trac, so that there’s some official reference to this request. It might of course get turned down, but at least someone’s have to make a descision.