Связанные значения не обновляются из редактируемых данных без установки идентификатора в JDK1.5 - PullRequest
2 голосов
/ 27 июля 2011

Связанные значения не обновляются из таблицы редактируемых данных без установки идентификатора в JDK 1.5.Но то же самое работает без установки идентификатора в JDK 1.6.Кто-нибудь знает почему?Спасибо

Код, часть Bean

    public void setDataTable(HtmlDataTable dataTable) {
    this.dataTable = dataTable;
}

public HtmlDataTable getDataTable() {
    if (dataTable == null)
        setEditableDataTable();
    return dataTable;
}

private void setEditableDataTable() {

    dataTable = new HtmlDataTable();
    dataTable.setValueBinding("value",
            createValuebinding("#{testBean.stringList}"));
    dataTable.setVar("items");
    for (int i = 0; i < getDatastable().get(i).size(); i++) {

        UIColumn column = new UIColumn();
        dataTable.getChildren().add(column);

        HtmlOutputText header = new HtmlOutputText();
        header.setValue("Header "+i);
        column.setHeader(header);

        HtmlInputText input = new HtmlInputText();
        input.setValueBinding("value", createValuebinding("#{items[" + i
                + "]}"));
        column.getChildren().add(input);

    }

}

private ValueBinding createValuebinding(String valueExpression) {
    return FacesContext.getCurrentInstance().getApplication()
            .createValueBinding(valueExpression);
}

Часть JSP

   <h:dataTable binding="#{testBean.dataTable}" >
                </h:dataTable>

Решение

   Give id for the datatable
...