limit_start
Description
Задаёт начальную границу допустимого диапазона дат
limit_start: Date
Example
scheduler.config.limit_start = new Date(2018,5,15);
scheduler.config.limit_end = new Date(2018,6,15);
...
scheduler.init('scheduler_here', new Date(2018,5,30), "week");
Default value: null
Related samples
Details
примечание
Для использования этого свойства необходимо включить плагин limit.
Настройки limit_start и limit_end ограничивают диапазон дат, в котором можно создавать новые события. Кроме того, можно запретить просмотр событий за пределами этого допустимого диапазона, включив свойство limit_view:
scheduler.config.limit_start = new Date(2018,5,15);
scheduler.config.limit_end = new Date(2018,6,15);
scheduler.config.limit_view = true;
Related API
Related Guides
Need help?
Got a question about the documentation? Reach out to our technical support team for help and guidance. For custom component solutions, visit the Services page.