How could I get the radgridview to display collapsed child rows set. In other words we have a radgridview with rows and child rows but how could we get the child rows collapsed for all initially until the user decides which one to expand.
Thanks and best regards,
G
1 Answer, 1 is accepted
0
Stefan
Telerik team
answered on 29 Feb 2012, 01:52 PM
Hello Gonzalo,
Thank you for writing.
By default when binding the grid, the rows will be collapsed, if you have not used the ExpandAll method of the template. However, you can always call the CollpaseAll method of the desired template:
radGridView1.MasterTemplate.CollapseAll();
I hope this helps. Let me know if I can be of further assistance.