tags:

views:

366

answers:

1

Looking for an example of the ext-GWT / GXT HTMLEditor, especially the part where you retrieve the user's entry.

Thanks C

+1  A: 

It is as simple as this:

FormPanel formPanel = new FormPanel();    
HtmlEditor htmlEditor = new HtmlEditor();
formPanel.add(htmlEditor);
String html = htmlEditor.getValue();

i.e. getValue returns the user's entry.

Daniel Vaughan