Is it possible to collapse (or expand) a group based on the Group's FieldName property?
I have the following in my PreRender function, but it just collapses all groups:
Any input would be greatly appreciated!
I have the following in my PreRender function, but it just collapses all groups:
foreach
(var gi
in
rgVendorInvItems.MasterTableView.GetItems(GridItemType.GroupHeader))
{
gi.SetChildrenVisible(
false
);
}
Any input would be greatly appreciated!