I want to disable default grid sorting and want to provide my own server side sorting from a webservice.
I am returning new result set when user is sorting and binding new resultset with Gridview again. The sorted result which my service is returning is again sorted by default grid view sorting.Even if i am cancelling the default sorting and calling my webservice it is sorting my resultset.
void RadGrid_Sorting(object sender, GridViewSortingEventArgs e)
{
e.Cancel=true;
//Webservice call
}
I tried to clear sort descriptors but after that the sort direction details is geting cleared and grid view is not showing on which column we have sorted the result..
How to disable RadGrid's default sorting behaviour and implement our own behavior.
Thanks in advance.
