我有一个带有primefaces textEditor的面板,但是当我非常频繁地使用工具栏按钮时,无法将其禁用。我已经有几个月了这个问题,如果有人能帮助我,我将无法解决。
这是屏幕快照https://imgur.com/YOgnwfl
谢谢。
我尝试不更新textEditor,并且我认为它可以解决问题,但是我需要更新它以便从bean加载用户保存的文本。我正在使用primefaces 6.1。在primefaces 6.2中也是如此。
<h:form>
<p:textEditor widgetVar="editorWidget" id="editor" readonly="#
{expedienteBean.expedienteSeleccionado == null}"
value="#{expedienteBean.notes}" height="300">
<f:facet name="toolbar">
<span class="ql-formats">
<button class="ql-bold"></button>
<button class="ql-italic"></button>
<button class="ql-underline"></button>
</span>
<span class="ql-formats">
<select class="ql-font"></select>
<select class="ql-size"></select>
</span>
<span class="ql-formats">
<button class="ql-script" value="sub" />
<button class="ql-script" value="super" />
</span>
<span class="ql-formats">
<button class="ql-header" value="1" />
<button class="ql-header" value="2" />
<button class="ql-blockquote" />
</span>
</f:facet>
</p:textEditor>
</h:form>