Currently, our list grid sorting is 100% client-side. It was fine, but the only minor detail is that all data must have been fetched and sent back to the browser already before the user can sort.
What is the simplest way to disable sorting until all data is in the browser? I've tried retrieving the listgrid on DataSource.transformResponse. Initially, it works - I can sort the listgrid but once I sort, the listgrid scrolls back to the beginning and dsResponse.totalRows is once again less than dsResponse.endRow.
What is the simplest way to disable sorting until all data is in the browser? I've tried retrieving the listgrid on DataSource.transformResponse. Initially, it works - I can sort the listgrid but once I sort, the listgrid scrolls back to the beginning and dsResponse.totalRows is once again less than dsResponse.endRow.
Comment