Has anyone else seen this situation happen to them?
I've got a class that extends PopupPanel and overrides the show() method.
class MyPopup extends PopupPanel {
<snip>
/**
* @see com.google.gwt.user.client.ui.PopupPanel#show()
*/
@Override
public void show() {
Log.info( this.getClass().getName() + ".show()" );
/*** custom initialization done here ***/
super.show();
}
}
When I create an instance and call show, it goes into an infinite loop.
Walking the code in the debugger shows super.show() calling MyPopup.show()
rather than PopupPanel.show()
I'm using GWT 2.0.4
--
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.