I need to get the navigation datepicker in the kendo scheduler (see the picture).
in my app i need to add restrection to the date picker for example minimum date is today or maximum date is 10 day from now.
Is there a way to get that datePicker.
You can use min and max options of scheduler to limit it:
$("#scheduler").kendoScheduler({
date: new Date(),
min: new Date(),
max: new Date('2016/09/17'),
.....................