as I can do to expand the grouped rows at runtime.
Every time I load my data grid appears with contracted groups.
if someone could help me. thanks
Hello Carlos,
If you would like to have every group by row expanded you could handle InitializeGroupByRow event of the UltraGrid and set the Expanded property of any GroupBy row to true like:
private void ultraGrid1_InitializeGroupByRow(object sender, InitializeGroupByRowEventArgs e) { e.Row.Expanded = true; }
If you have any other questions please feel free to let me know.
I have 2 levels and want the inside level (2nd level) to contract and level out (1st level) to expand, you can do that?thanks for the help.