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

Progressive Data Load In Kendo UI Grid

2 Answers 200 Views
Grid
This is a migrated thread and some comments may be shown as answers.
sanjay rabadiya
Top achievements
Rank 1
sanjay rabadiya asked on 24 Oct 2012, 09:25 AM

Hi,

I am using kendo ui asp.net mvc.I have kendo grid with Virtualization support. Virtualization will load data on scroll. When grid has multiple pages at that time I can’t find records of previous page through JavaScript or Jquery and also I loss the state of previous record.

Is kendo ui providing progressive data load support in grid control?

In our application, we want to load data with progressive load like Silverlight.

For ex:

Case 1:

I have 500 total records and grid page size is 20.So I will get 20 records in each page. When I scroll for more record previous record must maintain in same state. If I select any record through checkbox and move down and again come bake top previous record must get with select state.

 Case 2:

 I have 500 total records and grid page size is 20.So I will get 20 records in each page. My filtering, sorting and search will perform on server or backend service side. In first page I select top 5 records out of 20.now I search diff record which is not available in first 20 records so I have to take that from service but when I back must found previous record with new record in select state.

How can I handle this type of situation without progressive load?        


2 Answers, 1 is accepted

Sort by
0
Petur Subev
Telerik team
answered on 29 Oct 2012, 11:32 AM
Hello Sanjay,

I am afraid that the selection of the checkboxes could not be kept when virtual scrolling is enabled and you scoll to get the next batch of records. This is because when virtual scrolling is enabled and you scroll down the tr elements which are no longer visible are removed from the DOM and next one are appended. 

I am sorry for the inconvenience.

Kind Regards,
Petur Subev
the Telerik team
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
0
digiben
Top achievements
Rank 1
answered on 04 Sep 2014, 06:25 PM
This seems like a solution I just found for this, to be able to track it.

http://stackoverflow.com/questions/16409475/kendo-ui-web-grid-virtual-scrolling-and-dynamic-checkbox

It has a live example too.
Tags
Grid
Asked by
sanjay rabadiya
Top achievements
Rank 1
Answers by
Petur Subev
Telerik team
digiben
Top achievements
Rank 1
Share this question
or