开发者

GXT HtmlEditor - How to retrieve the text?

开发者 https://www.devze.com 2022-12-16 00:06 出处:网络
Looking for an example of the ext-GWT / GXT HTMLEditor, especially the part where you retrieve开发者_StackOverflow中文版 the user\'s entry.

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.

0

精彩评论

暂无评论...
验证码 换一张
取 消