DateTimePicker provides an option to select a date and time value within a specified range by using the
min
and
max
properties. Always the min value has to be
lesser than the max value.
When the min and max properties are configured and the selected datetime value is out-of-range
or invalid, then the model value will be set to out of range
datetime value or null
respectively with highlighted error
class to indicates the datetime is out of range or invalid.
The value property depends
on the min/max with respect to strictMode
property.
The below example allows selecting a date within the range from 7th to 27th day in a month.
import { DateTimePickerComponent } from '@syncfusion/ej2-react-calendars';
import * as React from 'react';
import * as ReactDOM from 'react-dom';
export default class App extends React.Component<{}, {}> {
private minDate: Date =new Date(new Date().getFullYear(), new Date().getMonth(), 7, 0, 0, 0);
private maxDate: Date =new Date(new Date().getFullYear(), new Date().getMonth(), 27,new Date().getHours(),new Date().getMinutes(),new Date().getSeconds());
private dateValue: Date = new Date(new Date().setDate(14));
public render() {
return <DateTimePickerComponent id="datetimepicker" value={this.dateValue} min={this.minDate} strictMode={true} max={this.maxDate} />;
}
}
ReactDOM.render(<App />, document.getElementById('element'));
If the value of
min
ormax
properties changed through code behind, then you have to update thevalue
property to set within the range.