我在谷歌搜索后尝试了一堆建议,但到目前为止还没有人为我工作。我试图在每一行中显示一个带有可编辑inputText值的简单数据表。通过通常的对象列表从数据库填充表。这是我的xhtml页面和托管bean
Richfaces 4.2.1,与JBoss 7.1捆绑的JSF 2 mojarra,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);
}
}
这是我尝试过的所有事情。所有这些都导致只有OLD VALUES在update()方法中打印到控制台。
将dataTable绑定到Managed Bean属性,在update()方法中检查,此处也会打印旧值。我刚刚在UIDataTable对象上做了一个getVlaue()并将它转换为List。
List应该已经使用表单中的更改值进行了更新,但我没有看到它发生。我确实将MBean放在了ViewScope中。
答案 0 :(得分:0)
你在数据表之外有一个h:表单吗?你尝试用inplaceinput字段替换inputtext吗?
答案 1 :(得分:0)
请在此处查看答案https://community.jboss.org/thread/200684?tstart=0
我改变了execute = @ form并且它有效!不需要ValueChangeEvent或搞乱dataTable绑定。 List值已就地更新,update方法打印正确的值