我在dataTable内的valueChangeListener上调用<h:selectBooleanCheckbox>。该数据表又位于另一个(外部)数据表中。在valueChangeListener方法中,我需要外部dataTable的实例对象。有什么方法可以获取外部dataTable实例的对象吗?

例如:

<h:panelGroup id="panelId">
    <p:dataTable id="outerDatatable"
                 var="supplier"
                 value="bean.supplierList">

        <p:column>
            <f:facet name="header">
                <h:outputText value="Suppliers" />
            </f:facet>
            <h:outputText value="#{supplier.name}" />
        </p:column>

        <p:column>
            <p:dataTable id="innerDataTable"
                         var="supplierAccount"
                         value="supplier.supplierAccountList">

                <p:column>
                    <h:selectBooleanCheckbox id="booleanBoxId"
                                             value="#{supplierAccount.supported}"
                                             valueChangeListener="#bean.checkBoxListener}"
                                             immediate="true"
                                             onchange="this.form.submit();"/>
                </p:column>
            </p:dataTable>
        </p:column>
    </p:dataTable>
</h:panelGroup>

我找到了以下解决方案:我使用了<p:ajax>侦听器,而不是valueChangeListener,并且可以将'supplier'对象以及supplierAccount对象传递给此侦听器方法。我们可以将任意数量的自定义对象传递给<p:ajax>侦听器。
<p:column>
    <h:selectBooleanCheckbox id="booleanBoxId"
                             value="#{supplierAccount.supported}"
                             immediate="true">
    </h:selectBooleanCheckbox>

    <p:ajax listener="#{bean.myListenerMethod(supplier,supplierAccount)}"
            update=":formName:panelId"/>
</p:column>

最佳答案

在这种情况下,可以通过以编程方式评估#{supplier}来获得它:

public void checkBoxListener(ValueChangeEvent event) {
    FacesContext context = FacesContext.getCurrentInstance();
    Supplier supplier = context.getApplication().evaluateExpressionGet(context, "#{supplier}", Supplier.class);
    // ...
}

但是,这很丑陋,您需要通过onchange="submit()"同步提交整个表单。我建议为此添加一些ajax。
<h:selectBooleanCheckbox value="#{supplierAccount.supported}">
    <f:ajax listener="#{bean.checkBoxListener}" render="???" />
</h:selectBooleanCheckbox>

(render属性由您决定)


public void checkBoxListener(AjaxBehavior event) {
    Boolean value = (Boolean) ((UIInput) event.getComponent()).getValue();
    FacesContext context = FacesContext.getCurrentInstance();
    Supplier supplier = context.getApplication().evaluateExpressionGet(context, "#{supplier}", Supplier.class);
    // ...
}

或者,如果您的环境支持EL 2.2,从而在EL中指定方法参数:
<h:selectBooleanCheckbox value="#{supplierAccount.supported}">
    <f:ajax listener="#{bean.checkBoxListener(component, supplier)}" render="???" />
</h:selectBooleanCheckbox>
public void checkBoxListener(UISelectBoolean checkbox, Supplier supplier) {
    boolean selected = checkbox.isSelected();
    // ...
}

也可以看看:
  • When to use valueChangeListener or f:ajax listener?


  • 与具体问题无关的,关于使用onchange="submit()",了解onchange不能按预期在IE6 / 7中使用复选框可能很有用。仅在第二次点击时触发。您宁愿使用onclick="submit()"代替。

    关于jsf - 如何将参数传递给p:dataTable中的valueChangeListener?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8382579/

    10-08 23:02