如何以编程方式获取 jsf 或 PrimeFaces 数据表的所有行
我正在使用数据表,每一行都有一个 selectonemenu 作为列。
我的页面上有一个按钮。单击它时,我想检查数据表的每一行,找到选择菜单的所选项目,并根据此所选值制作一些数据库内容。
有没有更简单的方法而不使用编程方式或对我的代码的任何解决方案?
这是我的代码:
在这里我只是试图找到一个输出文本,但它不起作用。
private DataTable myTable//primefaces datatable;
for ( UIComponent row : myTable.getChildren()) {
HtmlOutputText a= (HtmlOutputText) row.findComponent("bname");
System.out.println("click"+a.getValue());
}
I am using an datatable and every row has a selectonemenu as an column.
There is a button on my page.When it is clicked,i want to check every rows of datatable,find the selected item of selectone menu and make some database stuff depending on this selected value.
Is there a easier way without using programmatical way or any solution to my codes?
Here is my code:
Here I just tried to find a outputtext,but it did not work.
private DataTable myTable//primefaces datatable;
for ( UIComponent row : myTable.getChildren()) {
HtmlOutputText a= (HtmlOutputText) row.findComponent("bname");
System.out.println("click"+a.getValue());
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需将 Selectionmen 的选定值绑定到地图即可。
Just bind selected values of selectionmen to a map.
将数据表的 value 属性绑定到 POJO 列表。表列对应于 POJO 成员。
在submitDetails中,您可以使用list_POJO遍历数据表记录。
Bind the value attribute of datatable to a list of POJOs. The table column corresponds to the POJO member.
And in submitDetails, you can traverse through the datatable records using list_POJO.