我在file.xhtml中使用Primefaces数据表Complex,我想检索我选择删除或修改它的行的ID。有什么建议吗?
给你火影忍者。。。
首先,您需要用id为的对象填充表
在表中添加一个"删除"列
<p:column headerText="Delete">
<p:commandLink ajax="true" action="#{hoursReportBean.removeEntity}" update="@form" process="@this" styleClass="ui-icon ui-icon-trash">
<f:setPropertyActionListener
target="#{hoursReportBean.selectedHourReportsToDeleteFromTable}"
value="#{hourReport}" />
</p:commandLink>
</p:column>
public String removeEntity(){
...
use the id of the object selectedHourReportsToDeleteFromTable.getId() in order to delete it from the list
...
}
拉森干?