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.