we are trying to use kendo ui mvc scheduler control to display all the events. Even after using filters, the number of records to display are around 10000. Currently the control is working properly with the records less than 1000.Is there a way to load all the 10k records at a time?
3 Answers, 1 is accepted
0
Ivan Danchev
Telerik team
answered on 20 Jan 2017, 09:06 AM
Hello,
Loading thousands of events at the same time would have a negative impact on performance, since it is directly related to the amount of events that need to be rendered. In such scenarios we advise to implement server filtering as this allows to avoid loading all events at once and improves performance. You can see Vladimir's post in this forum thread, which provides more details and a link to a code library example that demonstrates this approach.
Nice example. However, using "stock" Kendo UI (Javascript) how would one make Scheduler contact server again (and thus call parameterMap)? By subscribing to `navigate` event and calling read() on the SchedulerDataSource?
0
Ivan Danchev
Telerik team
answered on 24 Jan 2017, 09:02 AM
Hello Bojan,
The following example uses the Kendo UI Scheduler (not its MVC wrapper) and demonstrates how the parameterMap function can be used in the Server Filtering scenario.