DevExtreme Reactive component libraries are in maintenance support mode.
The React Scheduler component's ViewState
and DateNavigator
plugins enable you to change the current date at runtime.
The following plugins implement date navigation feature:
Import the plugins listed above to enable a user to change the current date at runtime.
In uncontrolled mode, specify the initial date in the ViewState
plugin's defaultCurrentDate
property.
import * as React from 'react';
export default () => {
In controlled mode, pass the current date to the ViewState
plugin's currentDate
property and handle the onCurrentDateChange
event to control the date externally.
import * as React from 'react';
export default () => {