disabled
Description
Optional. Defines whether a date range picker is disabledUsage
disabled?: boolean;
Parameters
- true - a date range picker is disabled
- false - (default) a date range picker is enabled
Example
<DateRangePicker disabled={true} />
Details
It is also possible to set a date range picker to the disabled state by declaring the property with no value:
<DateRangePicker disabled />
Related article: Setting the disabled state
Related sample: DateRangePicker