We are using a kendo ui grid to display some data and have had some issues with datasets over 1000 rows. I built a web service and enabled server side paging which improved the initial load time. But, now the grid is very sluggish when grouping, so I am attempting to enable server side grouping.
In addition, I am looking at sorting and filtering on the server in an attempt to improve performance.
What I am struggling with is determining what is being passed to the WCF service from the kendo ui grid for grouping, sorting, and filtering.
So far we have a method prototype of public RetObj GetData(int skip, int take, int page, int pageSize).
I know I will have to add parameters to handle the grouping, sorting, and filtering, but how do I determine what parameters to add?
In addition, I am looking at sorting and filtering on the server in an attempt to improve performance.
What I am struggling with is determining what is being passed to the WCF service from the kendo ui grid for grouping, sorting, and filtering.
So far we have a method prototype of public RetObj GetData(int skip, int take, int page, int pageSize).
I know I will have to add parameters to handle the grouping, sorting, and filtering, but how do I determine what parameters to add?
We are using a kendo ui grid to display some data and have had some issues with datasets over 1000 rows. I built a web service and enabled server side paging which improved the initial load time. But, now the grid is very sluggish when grouping, add/removing columns under the column menu
I am attempting to setup Server side Grouping, Sorting, and Filtering in a kendo ui grid. We are calling a method exposed by a WCF Web Service.
So far we have a method prototype of public RetObj GetData(int skip, int take, int page, int pageSize).
I know I will have to add parameters to handle the grouping, sorting, and filtering, but how do I determine what parameters to add?