Reputation: 728
Does anyone have any idea how to perform rows reordering for Telerik RadGrid on ClientSide?
Thanks.
Upvotes: 0
Views: 2414
Reputation: 50728
At the time of writing this post, Telerik doesn't have pure client side reordering that I'm aware of, it's only client-side with a postback: http://demos.telerik.com/aspnet-ajax/grid/examples/programming/draganddrop/defaultcs.aspx
Upvotes: 1
Reputation: 21788
You can use .reorderColumns(lastColumnName, firstColumnName);
in Javascript.
See the demo at: http://demos.telerik.com/aspnet-ajax/grid/examples/client/resizing/defaultcs.aspx
Upvotes: 1