- What is the event that we can subscribe to in the code when user expands a single group in group table?
- What method do we need to invoke to expand single group in Group table programmatically?
Hi,
- Unfortunately, there is no such event.
- There are two methods:
-
expand(GroupInfo groupId)
- expands individual group -
expandPath(Object item)
- expands all group in which the passes item is located
GroupTableItems
can be used to obtain GroupInfo
objects, e.g.:
GroupTableItems<Project> groupItems = ((GroupTableItems<Project>) projectsTable.getItems());
List<GroupInfo> groupInfos = groupItems.rootGroups();
Regards,
Gleb
Thank you!! just a suggestion, i think adding this in development document will be very helpful for others too.