1

In our application we have data for more than 200 rooms . We fetch data for all the rooms from the back end in one api call within a particular date range (10 or 15 days range) which can have large amount of data. If we bind all the data to the scheduler the rendering is very slow.

So instead of binding all data at once, Is there a way we could bind the data to the scheduler on scroll like that of in endless scroll for ajax requests?

I did found endless scroll for Kendo grid which is provided out of the box but is not available for scheduler.

Nithin P.H
  • 671
  • 1
  • 9
  • 29
  • You can create a JSON and update that JSON in given interval and include that JSON file where you want – Gaurav Kandpal Jun 13 '18 at 11:46
  • Or you can use lazy loading. – Gaurav Kandpal Jun 13 '18 at 11:46
  • sorry for the delay @GauravKandpal for the reply. The scheduler data is loaded according to resource value provided so in order to achieve we must identify which resource the data belongs to and so on many other problems. When contacted telerik team they confirmed virtualization or lazy loading is not possible in the widget....as of yet that is Thanks – Nithin P.H Jun 26 '18 at 06:53

1 Answers1

0

for those who are looking to make kendo scheduler much faster I would recommend you to follow this method

kendo-scheduler-resources-paging

Nithin P.H
  • 671
  • 1
  • 9
  • 29
  • It's better to include short summary and the main points of the solution, in case the page you're linking to becomes unavailable. – Shai Aug 16 '18 at 12:28