limit_end
Description
Определяет конечную границу допустимого диапазона дат
limit_end: 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.