h:在h:dataTable中的inputText在单击具有立即为true的commandButton后不保留其状态

时间:2013-03-06 16:12:14

标签: java jsf jsf-2 mojarra

我需要在h:dataTable中显示一些必须可编辑的实体。用户可以在此表中添加和删除实体。问题是,当我添加一个实体时,单击按钮"添加"用户键入的状态已消失。

我正在运行Mojarra 2.1.7-jbossorg-1(20120227-1401)

这是第一次显示视图,因为您可以看到dataTable为空: enter image description here

然后我点击添加,显示以下内容: enter image description here

我在输入中输入了一些值: enter image description here

我点击了#34;添加"再次,你可以看到我输入的第一行的值消失了: enter image description here

我需要能够保持行的状态,直到我完成版本为止,直到我点击按钮" Save&#34 ;.

我也试过 rowStatePreserved =" true" h:dataTable的属性,这就是:

在我输入第一行的内容之后,我点击添加: enter image description here

第一行状态被保留,但添加的第二行具有与第一行相同的值,即使我还没有输入任何内容。

代码

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:ui="http://java.sun.com/jsf/facelets"
    xmlns:p="http://primefaces.org/ui"
    xmlns:oms="http://aom.org/oms"
    xmlns:f="http://java.sun.com/jsf/core">
<h:head>
    <title>Testing</title>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</h:head>
<h:body>
    <h:form id="myForm" prependId="false">  
        <h:dataTable value="#{testingBean.persons}" var="person" border="1" rowStatePreserved="true">
            <h:column>
                <f:facet name="header">Name</f:facet>
                <h:inputText value="#{person.name}"/>
            </h:column>
            <h:column>
                <f:facet name="header">Age</f:facet>
                <h:inputText value="#{person.age}"/>
            </h:column>
            <h:column>
                <h:commandButton action="#{testingBean.remove(person)}" value="Remove" immediate="true"/>
            </h:column>
        </h:dataTable>
        <h:commandButton action="#{testingBean.add()}" value="Add" immediate="true"/>
        <h:commandButton action="#{testingBean.save()}" value="Save" />
    </h:form>
</h:body>
</html>

TestingBean.java:

package org.aom.oms.controller;

import java.util.ArrayList;
import java.util.List;

import javax.enterprise.inject.Model;
import javax.faces.bean.ManagedBean;
import javax.faces.bean.ViewScoped;

@ManagedBean
@ViewScoped
public class TestingBean {  


    private List<Person> persons = new ArrayList<TestingBean.Person>();


    public List<Person> getPersons() {
        return persons;
    }

    public void setPersons(List<Person> persons) {
        this.persons = persons;
    }


    //Inner class for testing purpose
    public class Person {
        private String name;
        private Integer age;

        public String getName() {
            return name;
        }

        public void setName(String name) {
            this.name = name;
        }

        public Integer getAge() {
            return age;
        }

        public void setAge(Integer age) {
            this.age = age;
        }
    }

    public void save() {
        System.out.println("Saving...");
        //myRepository.save(persons);
    }

    public void add() {
        persons.add(new Person());
    }

    public void remove(Person person) {
        persons.remove(person);
    }

}  

1 个答案:

答案 0 :(得分:0)

而不是使用h:dataTable使用Tomahawk t:datatable

  

MyFacesDataTable将标准JSF DataTable扩展了两个   重要特征:

     
      
  • 保存DataModel状态的可能性。
  •   
  • 支持可点击的排序标题(请参阅SortHeader组件)。
  •   

这些属性可让您按照自己的意愿行事:

  

preserveRowStates (布尔值):表示每个状态是否为   在再次呈现数据表之前不应丢弃该行。   如果输入组件位于其中,则将此设置为true可能会很有用   datatable没有值绑定,输入的值应该是   再次显示。只有在数据模型中,这才能正常工作   数据表没有通过排序,删除或添加行来更改。   默认值:false

     

forceIdIndexFormula (字符串):覆盖默认值的公式   表的主体组件构造中的行索引。示例:#{myRowVar.key}&gt;警告,EL应该评估每行的唯一值!