I am using Ext-GWT 2.0.1 and GWT 1.6.4
I have a LayoutContainer that uses a RowLayout. The widgets are added to this container with RowData(1,-1), so that when they change in height, the container also changes height accordingly. I want to do something when this LayoutContainer changes size. How can I add a listener that does this? So far I have tried:
layoutContainer.addListener(Events.Resize, new Listener<ComponentEvent>() {
public void handleEvent(final ComponentEvent event) {
//do something
}
}
But handleEvent never gets called.