Hello,
I try to get an Event when the ContentPanel in a BorderLayout is
collapsed or expand. I tried a lot of Events but the only working are
the BeforeCollapse and the BeforeExpand. I'd like to have the Event
after the collapse or expand happens.
The following piece of code doens't work, i saw in BorderLayout that
the Collapse Event is cancelled. Why ?
I tried to extend BorderLayout but the wanted functions are private !
final ContentPanel north = new ContentPanel(new BorderLayout());
north.addListener(Events.Collapse, new Listener<BaseEvent>() {
@Override
public void handleEvent(BaseEvent be) {
// Something to do
}
});
Do someone has a work around ?
Regards,
Vincent COROLLEUR
--
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-web-toolkit?hl=en.