Integration Widget (GWT) with DynamicForm (Smartgwt) - com.google.gwt.user.client.ui.AttachDetachExc

Posted by keweishang on Stack Overflow See other posts from Stack Overflow or by keweishang
Published on 2010-04-01T15:40:32Z Indexed on 2010/04/01 15:43 UTC
Read the original article Hit count: 608

Filed under:
|
|
|
|

I had this problem when I created a Window (Smartgwt) and put a DynamicForm (Smartgwt) in this Window, In this DynamicForm, I have a CanvasItem (Smartgwt) in which I put a RichTextArea (GWT). And when I press "ESC", I can quit the Window (Smartgwt) without probleme. But when I press "F5" to refresh my application, the browser pops up a exception saying "com.google.gwt.user.client.ui.AttachDetachException". To solve this problem, I do the following:

public class MailWindow extends Window { public MailWindow(){ this.addCloseClickHandler(new CloseClickHandler() {
public void onCloseClick(CloseClientEvent event) { form.getRichTextArea().removeFromParent(); MailWindow.this.destroy(); }
});
} }

Which solved my problem! :)

Kewei

© Stack Overflow or respective owner

Related posts about smartgwt

Related posts about gwt