This is a migrated thread and some comments may be shown as answers.

Deferred loading of data in Kendo Grid

2 Answers 368 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Rosi Reddy
Top achievements
Rank 1
Rosi Reddy asked on 25 Jul 2014, 07:54 PM
I didn't find a way to do deferred loading of data in Kendo Grid.
like to know if there is any sample to implement this approach.

Thanks

2 Answers, 1 is accepted

Sort by
0
Rosi Reddy
Top achievements
Rank 1
answered on 25 Jul 2014, 08:08 PM
I want to get all the data into client side and do paging, sorting and filtering on client side. Client side grid features are possible to implement by setting ServerOperation to false.

But since data is more than 100K records, I want to send this data to client in batches (1000 records in every batch).

Hope this scenario is possible to implement.
0
Kiril Nikolov
Telerik team
answered on 28 Jul 2014, 11:42 AM
Hi Rosi,

If you don't set the serverPaging option to true, then the paging will be done client side, you need to set the pageSize option that will specify the number of records rendered per page.

If you however want to get 1000 records per batch then you will need to implement serverPaging, that will pass the data pages to the client, because with client side paging all data items are loaded, and then the rendering is done per pages.

Regards,
Kiril Nikolov
Telerik
 
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
 
Tags
Grid
Asked by
Rosi Reddy
Top achievements
Rank 1
Answers by
Rosi Reddy
Top achievements
Rank 1
Kiril Nikolov
Telerik team
Share this question
or