I'm trying to change the column order of a webcombo in an ultrawebgrid after a client side event. I have the grid inside an WebAsyncRefreshPanel, and I'm calling refresh() on the panel clientside. The async postback is working, and I'm trying to set the column order in the InitializeLayout of the webcombo like this: band.Columns.FromKey("Name").Move(0);
I'm not having any luck so far.
Am I on the right track with this, or should I just try to do this client side?
Thanks.