3

我已经测试了 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>
4

1 回答 1

3

这是由于 PrimeFacesCoreRenderer没有调用方法,而是单独调用UIComponent#encodeAll()。因此,当它被声明为 PrimeFaces 组件的直接子组件时,它总是会失败,但当它被声明为标准 JSF 组件的直接子组件时,它会起作用。renderChildren()encodeBegin()encodeChildren()encodeEnd()

如果您执行工作encodeBegin()而不是encodeAll(),那么它应该可以工作。我已经相应地更新了复合组件文章。

在不相关的说明中,<p:dialog>应该有自己的形式。

于 2013-03-25T12:45:59.367 回答