DevExtreme jQuery/JS - View Switcher
View switcher is a scheduler element used for quick switching between views.
To specify what views are available within the switcher, use the views option.
JavaScript
- $(function(){
- $("#schedulerContainer").dxScheduler({
- // ...
- views: ['day', 'week', 'agenda']
- });
- });
On mobile devices, the view switcher is displayed as a drop-down menu.
To use the drop-down menu on all types of devices, assign true to the useDropDownViewSwitcher option; to use tabs - assign false.
JavaScript
- $(function(){
- $("#schedulerContainer").dxScheduler({
- // ...
- useDropDownViewSwitcher: true
- });
- });
See Also
Feedback