我已经测试了 Balusc 的 inputDate 组件:在 PrimeFaces 对话框中具有多个输入字段的复合组件。该encodeAll
方法根本没有被调用,选择框也没有被初始化。复合组件在放置在文章中所示的表单中时可以正常工作。
为什么encodeAll
在对话框中不起作用,如何解决?
编辑 1
我使用 Mojarra 2.1.13 和 PrimeFaces 3.4.2。
编辑 2 这是我真实项目中的一个示例。我使用您的组件来了解复合组件。我有一个视图帐户,带有一个数据表和一个工具栏。按添加应该会打开一个带有自定义向导的对话框。对话框有自己的形式,但不显示向导。
accounts.xhtml
<h:form id="form">
<ui:include src="/WEB-INF/flows/accounts/accountsTable.xhtml" />
</h:form>
<ui:include src="/WEB-INF/flows/accounts/mainDialog4.xhtml" />
accountsTable.xhtml
<p:dataTable id="accounts" ... />
<p:toolbar>
<p:toolbarGroup align="left">
<p:commandButton value="Add"
action="#{accountsBean.initializeEntity}"
process="@this" update=":actionsDialog4"
oncomplete="actionsDialogWidget4.show()">
<f:setPropertyActionListener value="#{2}"
target="#{accountsBean.operation}" />
<f:setPropertyActionListener value="accountsBean"
target="#{sessionScope.beanName}" />
</p:commandButton>
</p:toolbarGroup>
</p:toolbar>
mainDialog4.xhtml
<p:dialog id="actionsDialog4" widgetVar="actionsDialogWidget4" dynamic="true"
modal="true">
<h:form>
<costom:actionWizard name="wizard" widgetVar="wiz" bean="#{accountsBean}" header="#{accountsBean.entityHeader}" />
</h:form>
</p:dialog>