无法编辑我的h:datatable

时间:2010-04-07 09:30:28

标签: jsf richfaces

我有这段代码:

<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>

这是我的豆子:

private List<Detail> lreqs;


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

public void saveChanges() {

        firstNewValue = lreqs.get(0).getValue();
        }

/**
     * @return the lreqs
     */
    public List<Detail> getLreqs() {
        if (currentJob != null && lreqs==null) {
            lreqs = (List<Detail>) jobsBDataDAO.findByJobBooking(currentJob);
        }
        return lreqs;
    }

但是当我点击保存时 - req.value字段中的新值未被保存! 为什么会这样?

1 个答案:

答案 0 :(得分:0)

我添加了一个错误。

富表面的a4j:keepAlive标签在f:view之前。 并没有正确阅读。