Hello,
I need to respond when a user close a tab in a tabset. So I added a CloseClickHandler to my tabset in this way:
Ok, the event is fired and that's fine. But... the tab doesn't close. So, is there a way to call the default CloseClickHandler or do I have to replicate its behaviour by rewriting it?
Thank you for your response!
I need to respond when a user close a tab in a tabset. So I added a CloseClickHandler to my tabset in this way:
Code:
tabSet.addCloseClickHandler(new CloseClickHandler() { public void onCloseClick(TabCloseClickEvent event) { SC.say("close!"); }});
Thank you for your response!
Comment