My objective is to disable the past days and more than 1 year from the current date, it is working for past days but couldn't disable more than 1 year from the current date, I've tried but didn't worked.
Here is the code:
<TextField
variant="outlined"
id="datetime-local"
label="Select Date and Time"
placeholder="Select Date and Time"
type="datetime-local"
value={this.state.DateTime}
InputLabelProps={{
shrink: true,
}}
inputProps={{
min: new Date().toISOString().slice(0, 16),
}}
onChange={this.HandleChange}
/>
For example: today's date is 04-15-2021, then it should enable 1 year dates based on the current date i.e., 04-15-2022. Can anyone help me in this query? Thanks! in advance