Search code examples
kendo-uitelerikrequirejskendo-schedulertelerik-scheduler

How to use only the scheduler of kendo ui by importing ONLY kendo.scheduler.min


I am trying to create a custom scheduler using kendo ui scheduler but I am having some performance issues (render time of over 10s). To resolve this, I tried only to import (using requirejs) the kendo.scheduler.min file but I am getting tons of errors like this one, but just with different files.

Uncaught Error: Script error for "kendo.dropdownlist.min", needed by: kendo.scheduler.min

My question is, do I really need to import all the files shown in the error to get kendo working? Is there other way to use kendo.scheduler.min without having to import all those other scripts?


Solution

  • For kendo-UI schduler only "kendo.scheduler.min" is not enough because to change the date you have to add "kendo.datepicker.js" and to open insert/Update window you have to add "kendo.window.js" into the page.

    Please check this link to know the script files list for the Kendo UI Scheduling widgets.

    Let me know if any concern.