JSF:为PrimeFaces编辑器开发onfocus?

时间:2016-06-08 06:30:58

标签: javascript jsf primefaces

有没有办法以某种方式收听Primefaces p:editor的焦点?

这是我的p:编辑:

<p:editor widgetVar="editorWidget"
    value="#{customEditorBean.content}" width="600" maxlength="8000">

我可以为编辑器找到onchange属性,但就是这样。我正在尝试实现一种功能,一旦用户开始在编辑器的文本字段上写东西,就会启用保存按钮。但我不想检查每次击键/值的变化,而只是在第一次单击文本字段时。

这是按钮:

<p:commandButton id="saveButton" action="#{customEditorBean.save}"
    update="@all" value="Save" rendered="#{customEditorBean.canSaveContent}"
    disabled="#{!customEditorBean.contentEdited}"/>

0 个答案:

没有答案