Is there any client-side sorting capability for the radGrid? (Such as you get with jQuery DataTables)
I have a radGrid where I'm filling one column on the client after the page is loaded. If I use the postback sorting functionality, then this data is lost, and will need to be regenerated. Client-side sorting would avoid this (and perform better by avoiding the server round trip delay).
The data I'm putting into the column is FLOT charts, plotted using data pulled down via a web service call. I store the data in the client to allow redrawing of larger versions of the chart, and plotting of alternate views/datasets.
It looks like server roundtrips, such as the postbacks on sorting, and opening of details tables loses all the stored data - I guess not surprisingly, as it's basically a new page to the browser, but it means that not only do I need to redraw the charts in the grid, but I also have to pull down the data again.
Thanks.
I have a radGrid where I'm filling one column on the client after the page is loaded. If I use the postback sorting functionality, then this data is lost, and will need to be regenerated. Client-side sorting would avoid this (and perform better by avoiding the server round trip delay).
The data I'm putting into the column is FLOT charts, plotted using data pulled down via a web service call. I store the data in the client to allow redrawing of larger versions of the chart, and plotting of alternate views/datasets.
It looks like server roundtrips, such as the postbacks on sorting, and opening of details tables loses all the stored data - I guess not surprisingly, as it's basically a new page to the browser, but it means that not only do I need to redraw the charts in the grid, but I also have to pull down the data again.
Thanks.