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
275
Sort before display data on UI in the UltraWebGrid
posted

I have an User control having UltraWebGrid in my application. I am applying GroupByColumn on the data for three levels:

like

UltraWebGrid1.Rows.Band.Columns.FromKey("COLUMN_NAME1").IsGroupByColumn = true;

UltraWebGrid1.Rows.Band.Columns.FromKey("COLUMN_NAME2").IsGroupByColumn = true;

UltraWebGrid1.Rows.Band.Columns.FromKey("COLUMN_NAME3").IsGroupByColumn = true;

after that I need to apply order by or sort the data before displaying on the web page page. I cannot use the UI for sorting data.

My data is already sorted as I used Order By in the select query.

The data is also coming sorted from database but after applying the "IsGroupByColumn" my data sorting is gone and I cannot find any way to sort the data before displaying in UI.

If anyone has faced this problem please share your solution if any.

Thanks.

Parents Reply Children
No Data