0

I have MVC project and i'm using there some kendo grids with huge data.

When I'm binding this grids, i'm using Ajax Binding with DataSourceResult, I have huge data so it's binding so slow

I want to understand what is the logic of that when binding data? Is it fetching all data and seperate in pages inside or Is it fetching page by page?

Do you have any idea?

demonplus
  • 5,613
  • 12
  • 49
  • 68
saulyasar
  • 797
  • 1
  • 17
  • 45

2 Answers2

0

You need to use pagination when fetching the data, it is a bad idea to load everything and paginate later, you need to fetch from db page by page, this is the best practice.

Andrei Filimon
  • 1,138
  • 8
  • 12
0

You can use the answer to a similar question posted before as reference

How to implement Server side paging in Client side Kendo UI grid in asp.net mvc

Community
  • 1
  • 1
Suraj Nair
  • 561
  • 1
  • 8
  • 27