0 Replies Latest reply on Feb 3, 2012 4:17 PM by munk2020

    Partial render rich:collapsibleSubTable

    munk2020

      I am having an issue with partial rendering of a cell in a collapsibleSubTable.  I added a rowKeyVar to both the data:table and the collapsibleSubTable.  I also added 2 collections for the groups and rows to update.

       

      Here is what I have so far.

       

      groupsToUpdate is a HashSet<Integer> containing the ids 0, 1, 2, 3 for each group that should be updated.

      groupsToUpdateMap is a HashMap<Integer, HashSet<Integer>> which is keyed off of the group...[0, [0,1,2]],[1,[0,1]]...

       

      render="table:@rows(handler.groupsToUpdateSet):subtbl:@rows(handler.groupsToUpdateMap[handler.groupsToUpdateSet]):cell4"

       

      I am not receiving any errors, but it is not rendering cell4.  I have searched online and the only examples I can find are for a simple dataTable.

       

      Any pointers for a collapsibleSubTable?

       

      Thanks

       

       

      After some more playing I finally got something to work by not using the HashMap on the subtable.

       

      render="table:@rows(handler.groupsToUpdateSet):subtbl:@rows(handler.rowsToUpdateMap):cell4"

       

      The problem with this is if rowsToUpdate contains 0 then every group that has a rowKeyVar of 0 will be update.  Not really a partial render at this point.  Is it possible to reference a keyed map on the subtable to only update certain rows per subTable?