how to disable the past years in year drop down list in react date picker? the problem is when we click the drop down list it shows past years as well as future year.I want show the current and future years enter image description here
Asked
Active
Viewed 1,771 times
-1
-
1This may be relevant https://stackoverflow.com/questions/41323221/how-to-disable-past-dates-from-today-date-with-material-ui-reactjs – Sterling Archer Jun 29 '18 at 17:23
-
The code did not disable the years in year drop down but it disable the dates – Abishek Jun 29 '18 at 17:33
1 Answers
0
You can pass the prop minDate
to the DatePicker
component, and set it to the start of the current year.
<DatePicker
minDate={moment().startOf('year')}
/>;

Tholle
- 108,070
- 19
- 198
- 189