AFTER INVOKE_APPLICATION(5) is being skipped in my h:datatable

Posted by Mike on Stack Overflow See other posts from Stack Overflow or by Mike
Published on 2010-04-07T09:30:28Z Indexed on 2010/04/07 9:33 UTC
Read the original article Hit count: 122

Filed under:
|

hi! i have this code:

<h:form>
        <rich:dataTable  value="#{my.lreqs}"  var="req"
            id="reqs" width="630px"  >
                <rich:column label="Value" styleClass="schColL" width="90px"
                style="text-align:center">
                <f:facet name="header">
                    <h:outputText value="#{my.colValue}" />
                </f:facet>
                <h:inputText value="#{req.value}" >
                </h:inputText>
            </rich:column>
        </rich:dataTable>
        <h:commandButton value="Save"
            action="#{my.saveChanges}" ></h:commandButton>
    </h:form>

and this is my bean:

private List<Detail> lreqs;

public List<Detail> getLreqs() {
        return lreqs;
}
public void setLreqs(List<Detail> lreqs) {
        this.lreqs = lreqs;
}

but when i click save - a new value in req.value field is not being saved! i added phaseTracker and realised that my AFTER INVOKE_APPLICATION(5). why is it?

© Stack Overflow or respective owner

Related posts about jsf

Related posts about richfaces