获取rich:subTable的父索引

时间:2011-07-19 08:08:05

标签: jsp jsf jsf-2 richfaces

在我的应用程序中,我在rich:subTable内使用rich:dataTable。当我点击rich:subTable的一行时,我想获取rich:dataTablerich:subTable的索引。有没有办法实现这个目标?

2 个答案:

答案 0 :(得分:1)

你可以使用jquery到达datatable行然后找到行索引, 像这样的东西

var rowIndex = $(this).closest('tr')。prevAll()。length;

var row = $(this).parent()。parent(); var rowIndex = $(row [0] .rowIndex);

答案 1 :(得分:0)

我使用了另一种方法,即使用子表的HtmlSubTable类。