Just defining 'public void onClick(ClickEvent event) { }' doesn't do
anything. You need to tell the system to call this handler i.e.addClickHandler(this); However, you can't do this on a DialogBox because it doesn't implement the HasClickHandlers interface. You will have to add a control to the dialog box that supports HasClickHandlers and add a handler to this. -- 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.
