0
<p:commandButton id="composeBtn" icon="ui-icon ui-icon-document"
        oncomplete="composeDlg.show()" update=":frmCompose ,:frmCompose:dlgpnl">
</p:commandButton>


<p:dialog widgetVar="composeDlg" modal="true" id="dlgcompose"
    appendToBody="true" showEffect="fade" hideEffect="fade">

        <h:form id="frmCompose" enctype="multipart/form-data">

        <p:editor widgetVar="editor" value="#{newMail.body}" />

        <p:separator>
        <p:commandButton value="# erLbl['mailBox.cmdSend']}" ajex="false"
                action="#{pc_mailBean.submit()}" update=":frm:msg"
                oncomplete="composeDlg.hide()" />
        <p:commandButton value="#{commonLbl['cmdCancel']}"
                oncomplete="composeDlg.hide()" />

    </h:form>
</p:dialog>

当我单击撰写按钮时,对话框出现,但编辑器禁用。我正在更新对话框中使用的表单。

4

1 回答 1

0

绑定 bean 中存在任何运行时错误,因此如果支持 bean 中出现任何错误,例如 Object is not initialize ...等运行时错误,这就是编辑器显示为禁用的原因...

因此,请仔细阅读任何简单的运行时错误都会为 appandToBody="true" 的模型对话框创建问题。

于 2013-05-06T07:24:41.040 回答