Froala Editor ( https://www.froala.com/wysiwyg-editor ) を JSF で使用したいと考えています。ただし、次のコードを使用すると、 newArticleController.body は Froala によって生成された html の代わりに値 null を取得します。
$(function() {
$('.articleTextarea').froalaEditor({
toolbarButtons: ["bold", "italic", "underline", "|", "subscript", "superscript", "|", "paragraphFormat", "fontFamily", "fontSize", "|", "align", "formatOL", "formatUL", "outdent", "indent", "-", "undo", "redo", "|", "color", "emoticons", "|", "quote", "insertHR", "insertTable", "|", "createLink", "insertImage", "insertVideo", "insertFile", "|", "fullscreen", "html", "save"],
height: 250,
heightMax: 250
})
});
...
<h:form>
<h:inputTextarea value="#{newArticleController.body}" styleClass="articleTextarea"/>
<h:commandButton value="Save" action="#{newArticleController.newArticle}"/>
</h:form>
これを解決する方法はありますか?