如何在 PrimeFaces 中设置编辑器始终处于活动状态?

How to set editor always active in PrimeFaces?

具有富文本编辑功能的 <p:editor/> 组件的代码。

 <h:panelGroup layout="block">
    <p:editor id="faqResponseId" 
              converter="textConverter"                                                                                 
              value="#{product.currentFaq.faqResponse}">
    </p:editor>
  </h:panelGroup>

当我点击编辑器正文时,编辑器始终处于活动状态。

如何使 <p:editor/> 在 Primefaces 中默认激活?

注意:当我将一些文本拖放到编辑器中时它不活动并且添加的文本未设置为支持 bean.When 编辑器仅处于活动状态,值设置为支持 bean。

似乎 p:editor 已弃用。它被 p:textEditor 取代,它会满足您的需要。据我所见,它始终处于活动状态,正是您所要求的:)

Link 到 primefaces showcase 上的演示:http://www.primefaces.org/showcase/ui/input/textEditor.xhtml

希望对您有所帮助。