Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
830
How to expand all rows in UltraWebGrid v8.2?
posted

I have the column grouping programmatically.  For example:

this.UltraWebGrid1.DisplayLayout.Bands[0].Columns[0].IsGroupByColumn = true

this.UltraWebGrid1.DisplayLayout.Bands[0].Columns[1].IsGroupByColumn = true; 

 

 

this.UltraWebGrid1.DisplayLayout.Bands[0].Columns[9].IsGroupByColumn = true;

How can I have all groups and rows expanded programmatically?  I search the web.  People gave many examples but none of them worked.  Thanks.

DanYeung