Unanswered: How can I recieve fired BeforeClose/Close events by a tabbed widget on TabPanel?
Unanswered: How can I recieve fired BeforeClose/Close events by a tabbed widget on TabPanel?
On gxt2, I used following code:
tabbedPanel.addListener(Events.BeforeClose, new Listener <TabPanelEvent>() {
public void handleEvent(final TabPanelEvent e) {
...
}
});
I want to implement same process on gxt3.0.4, so what should I do?
I seem that gxt3 TabPanel delegates to itself's field "container"(CardLayoutContainer), and this container fires BeforeRemove/Remove events.
But these events are not propagated.
Hence following code doesn't work, in my opinion.