I have 4 column level grouping such as
-A
-B
-C
+D
Where A,B,C,D are columns where grouping is done on the grid. A,B,C are in expanded state and D is collapsed. I have to restrict drill down if certain condition is met. e.g I want some thing like:
C
Where A,B are in expanded state and C is at level without any +/- sign when a certain condition is met. Please let me know how to implement this restriction of drill down of Ultrawebgrid groupings.
Hello ritesh123,
UltraWebGrid has a ExpandAll() method which expand all rows in the grid. To expand only one row (A) you can use UltraWebGrid1.Rows[0].Expand(true); Identically you can expand (B) and (C)
Hope this helps