在我的应用程序中,我在rich:subTable
内使用rich:dataTable
。当我点击rich:subTable
的一行时,我想获取rich:dataTable
内rich:subTable
的索引。有没有办法实现这个目标?
答案 0 :(得分:1)
你可以使用jquery到达datatable行然后找到行索引, 像这样的东西
var rowIndex = $(this).closest('tr')。prevAll()。length;
或
var row = $(this).parent()。parent(); var rowIndex = $(row [0] .rowIndex);
答案 1 :(得分:0)
我使用了另一种方法,即使用子表的HtmlSubTable类。