<rich:dataTable id="companyList" var="company"
value="#{companyList.resultList}"
rowClasses="odd-row, even-row"
rendered="#{not empty companyList.resultList}">
<rich:column width="25px" style="text-align:center;">
<f:facet name="header">#{messages.Edit}</f:facet>
<a4j:commandLink reRender="companyPanel"
oncomplete="#{rich:component('companyPanel')}.show()"
style="align: center;"> <f:setPropertyActionListener target=
"#{companyHome.instance}"
value="#{company}" />
<rich:toolTip value="#{messages.Edit}" />
</a4j:commandLink>
</rich:column>
<h:column>
<f:facet name="header">
#{messages.companyName}</f:facet>
#{company.companyName}
</h:column>
</rich:dataTable>
嗨,我的丰富数据表有一些问题。所有操作都正常工作,我在数据表中搜索了一些数据,我在数据表中得到了真正的列表,但是,如果我尝试更新列中的一些数据,错误的实例来了。例如,我选择香蕉哪个名字是我的数据,但它在搜索数据之前带来不带香蕉。我不明白为什么。对不起我的英语。
不确定,但是,你试过这个吗
<f:setPropertyActionListener target="#{companyHome.id}" value="#{company.id}" />
而不是
<f:setPropertyActionListener target="#{companyHome.instance}" value="#{company}" />