hi!
I have a grid which shows items which are groupe/ outlook style group by.
When the grid first appears the group by row is collapsed. Is there anyway to make only the group by row on top to appear expanded.
Regards,
Ahmad
If you are trying to expand all the group by rows, then the Nic's answer is correct, if you only want to expand the first group by row then you would need to set the .Expanded property on the row to true.
I'm not sure if I understand your question correctly but if you're trying to expand all rows from the top level Band only, you need to call ExpandAll method on that Band:
UltraWebGrid1.Bands[0].ExpandAll();
Regards,Nick