Looking for an example of the ext-GWT / GXT HTMLEditor, especially the part where you retrieve开发者_StackOverflow中文版 the user's entry.
Thanks C
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.
精彩评论