jsf - set content of tinymce with a string of html -
i have jsf renderer uses responsewriter generate jsf page . in class create string contains html code , :
string s = "<b>hello</b> <i>world</i>" .
when create tinymce editor , set value of responsewriter :
responsewriter.writetext(value, null);
it show same string (showing html tag) instead of html format of it.
i know it's wrong use writetext writing html don't know use instead.
try setcontent.
responsewriter.setcontent(s);
more information here: http://www.tinymce.com/wiki.php/api3:method.tinymce.editor.setcontent
Comments
Post a Comment