please suggest me to How to remove/add outlook group by property on server side
for the ultrawebgrid.
Yes, these changes must be done on the server. You can't change grouped-by columns on the client. When the user changes the group-by columns via the grid's user interface, the change is performed on the server (either via a postback or an AJAX callback).
hi,
do you have the code to change outlook group by columns on server side?
Thanks
Sajjad
Columns which are grouped are in the .SortedColumns collection on the Band object and can be removed from there. Although you would need to call Grid.PerformGroupRows() (I think) after removing the column so that the grid can be resorted according to the new sort order.