p:在呈现页面时,为p:dataTable的每一行处理commandLink actionListener

时间:2012-02-02 14:34:32

标签: jsf datatable primefaces actionlistener commandlink

我有一个dataTable,显示存储在数据库中的数据。其中一个列包含一个commandLink(p:commandLink)来编辑所选行,这很好。

我在渲染xhtml页面时遇到问题。看来commandLink的actionListener属性中的backingBean方法是针对表中的每一行处理的,但是只有在单击链接时才应该处理actionListener。

这是我的xhtml页面(部分):

<h:form id="formElenco">
    <p:dataTable id="dt1" value="#{myBean.itemList}" var="item">
        <f:facet name="header">
            <h:outputText value="header" />
        </f:facet>
        <p:column>
            <f:facet name="header">
                <h:outputText value="Name" />
            </f:facet>
            <h:outputText value="#{item.name}"/>
        </p:column>
        <p:column>
            <f:facet name="header">
                <h:outputText value="value" />
            </f:facet>
            <h:outputText value="#{item.value}"/>
        </p:column>
        <p:column>
            <p:commandLink id="lnkItemUpdate" value="Edit"
                            onstart="document.getElementById('divUpdateItem').style.display = 'block';"
                            actionListener="#{myBean.updateItemAction(item)}" update=":formUpdateItem" />
        </p:column>

    </p:dataTable>
</h:form>

<div id="divUpdateItem" style="display:none" > 
    <h:form id="formUpdateItem">
        Nome <h:inputText value="#{myBean.name}" /><br/>
        Met  <h:inputText value="#{myBean.value}" /><br/>
        <h:inputHidden value="#{myBean.id}" />
        <h:commandButton action="#{myBean.updateItemAction}" value="Save" />
    </h:form>
</div>

这是myBean的方法(myBean是requestScoped):

public String updateItemAction(Entity item){
    this.setId(item.getId());
    this.setName(item.getName());
    this.setValue(item.getValue());
    return null;
}

public String updateItemAction() {
    Entity entity = new Entity();
    entity.setId(this.getId());
    entity.setName(this.getName());
    entity.setVAlue(this.getValue());
    updateEntityQueryMethod(entity);
    return null;
}

1 个答案:

答案 0 :(得分:2)

这不是actionListener的有效方法签名,因此<p:commandLink>将其视为值表达式。

您应该使用action代替。

<p:commandLink id="lnkItemUpdate" value="Edit"
    onstart="document.getElementById('divUpdateItem').style.display = 'block';"
    action="#{myBean.updateItemAction(item)}" update=":formUpdateItem" />

请注意,您也可以返回void而不是null String

public void updateItemAction(Entity item) {
    this.setId(item.getId());
    this.setName(item.getName());
    this.setValue(item.getValue());
}

有效的actionListener方法签名是采用void参数的javax.faces.event.ActionEvent方法:

public void actionListener(ActionEvent event) {
    // ...
}

另见: