0

Can any one please let me know how can I load first 5000 rows into kendo grid and then load the remaining rows on page selects. I have 50000 rows to load and the page with kendo grid is loading pretty slow. So I want to use lazy loading approach..like loadin gthe first 5000 and then load the next rows in 1000's on page button clicks.

Any help appreciated!

ak17
  • 59
  • 2
  • 8

1 Answers1

1

You can either enable virtual scrolling or implement server paging.

Community
  • 1
  • 1
Atanas Korchev
  • 30,562
  • 8
  • 59
  • 93
  • I am now trying to load the kendo grid datasource from another aspx page. i am able to get the data from aspx page (I can see it in response block of chrome), but am unable to add it to the kendo grid – ak17 May 01 '14 at 17:23
  • A demo for virtual scrollable can be found here http://kendogridbinderex.apphb.com/OU/VirtualScrollable – Stef Heyenrath May 09 '14 at 13:41