0

データベースに格納されているデータを表示する dataTable があります。列の 1 つには、選択した行を編集するための 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;
}
4

1 に答える 1

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) {
    // ...
}

参照:

于 2012-02-02T14:52:52.627 に答える