JavaScript/jQuery Scheduler - Date Navigator
The date navigator is an element that allows you to change the date displayed on the view.
You can specify the range of available dates in the min and max properties:
index.js
- $(function() {
- $("#schedulerContainer").dxScheduler({
- // ...
- min: new Date(2018, 2, 3),
- max: new Date(2018, 4, 3)
- });
- });
Use the customizeDateNavigatorText function to customize the navigator's text. Refer to the function's description for an example.
Feedback