谷歌搜索后我尝试了很多建议,但到目前为止没有一个对我有用。我试图在每一行中显示一个带有可编辑 inputText 值的简单数据表。表是通过通常的对象列表从数据库中填充的。这是我的 xhtml 页面和托管 bean
Richfaces 4.2.1、JSF 2 mojarra 与 JBoss 7.1、JDK 1.6 捆绑在一起
<rich:dataTable value="#{wlScoreBean.scoreList}" binding="#{wlScoreBean.scoreTable}" var="item" id="table" style="width:100%">
<rich:column>
<f:facet name="header">PARAM NAME</f:facet>
<h:outputText value="#{item.paramName}" />
</rich:column>
<rich:column>
<f:facet name="header">1 Score</f:facet>
<h:inputText value="#{item.name1}" />
</rich:column>
<rich:column>
<f:facet name="header">2 Score</f:facet>
<h:inputText value="#{item.name2}" />
</rich:column>
</rich:dataTable>
<br/>
<h:panelGrid columns="3" id="buttonRow">
<a4j:commandButton value="Save" render="table" execute="@this" action="#{wlScoreBean.update()}">
</a4j:commandButton>
</h:panelGrid>
import java.io.Serializable;
import java.util.List;
import javax.annotation.PostConstruct;
import javax.ejb.EJB;
import javax.faces.bean.ManagedBean;
import javax.faces.bean.ViewScoped;
import javax.faces.component.html.HtmlDataTable;
import javax.faces.event.ValueChangeEvent;
import org.richfaces.component.UIDataTable;
@ManagedBean(name = "wlScoreBean")
@ViewScoped
public class WS implements Serializable
{
private static final long serialVersionUID = 1L;
private HtmlDataTable scoreTable;
private List<WorkloadScore> scoreList;
public void watchScore(ValueChangeEvent e)
{
System.out.println("old value="+e.getOldValue() + ", New Value="+e.getNewValue());
}
public List<WorkloadScore> getScoreList() {
return scoreList;
}
public void setScoreList(List<WorkloadScore> scoreList) {
this.scoreList = scoreList;
}
@EJB
private WorkloadScoreManagerService wlScoreManager;
public HtmlDataTable getScoreTable() {
return scoreTable;
}
public void setScoreTable(HtmlDataTable scoreTable) {
this.scoreTable = scoreTable;
}
public WorkloadScoreBean()
{
}
@PostConstruct
private void getAllScores()
{
this.scoreList = wlScoreManager.getAllScores();
}
public void update()
{
for (WorkloadScore wls : getScoreList())
{
System.out.println(wls.getParamName()+"="+wls.getPortabilityScore()+","+wls.getVirtualizationScore());
}
//wlScoreManager.update(workloadScore);
}
}
这是我尝试过的所有东西。所有这些都导致在 update() 方法中仅将 OLD VALUES 打印到控制台。
从 rich:dataTable 更改为普通的旧 JSF h:dataTable,结果相同
将 dataTable 绑定到托管 Bean 属性,在 update() 方法中进行检查,旧值也在此处打印。我刚刚对 UIDataTable 对象执行了 getVlaue() 并将其转换为 List。
该列表应该已经使用表单中的更改值进行了更新,但我没有看到它发生。我确实确保将 MBean 放在 ViewScope 中。