是否可以在RichFaces 4中使用@rows在collapsibleSubTable中部分渲染单个列?
例如,这适用于单个数据表。
List<Integer> updatedRows
render="myForm:myTable:@rows(updatedRows):id"
我不确定如何使用collapsibleSubTable动态执行此操作。
render="myForm:myTable:@rows(updatedRows):mySub:@rows(updatedSubRows):id
是否可以将updatedRows的当前迭代传递给updatedSubRows?有点像。
render="myForm:myTable:@rows(updatedRows):mySub:@rows(updatedSubRows(currentUpdatedRow)):id
其中currentUpdatedRow是updatedRows [0],updatedRows [1]等等。
或者可能使用HashMap<Integer, HashSet<Integer>>()
?