Primefaces p:编辑器组件删除标签,以及值更改事件

时间:2014-04-08 11:02:22

标签: primefaces editor text-editor

我有代码:

<p:editor id="selectedTemplateBody" value="#{tabBean.body}" height="430"
      widgetVar="editTemplate" onchange="saveHtml();"
      controls="bold italic underline font size style color highlight rule
        bullets numbering alignleft center alignright justify undo redo source"/>
<p:remoteCommand name="saveHtml" process="@parent" update="@none"/>

默认情况下,tabBean.body var包含带有html标记<html>,<head> and <body>的文本(已加载的表单数据库)。当我在编辑器的VIEW窗口中对值进行任何更改时,它会导致从编辑器的SOURCE窗口中删除所有标记,当然它会更改tabBean.body

如何解决此问题?

1 个答案:

答案 0 :(得分:0)

尝试编辑器组件的 escape = false 属性。