It's a pain to swipe months right until I get to the right year with react-dates
, is it possible to add some select for the year/month?
How to add a select for a year in react-dates?
10k Views Asked by Evgenia Karunus At
2
There are 2 best solutions below
1

To slightly tweak the @lakesare answer for those wanting to list out, say, the last 100 years for a birthday, here's a code snippet :
renderMonthElement = ({ month, onMonthSelect, onYearSelect }) => {
let i
let years = []
for(i = moment().year(); i >= moment().year() - 100; i--) {
years.push(<option value={i} key={`year-${i}`}>{i}</option>)
}
return (
<div style={{ display: "flex", justifyContent: "center" }}>
<div>
<select value={month.month()} onChange={e => onMonthSelect(month, e.target.value)}>
{moment.months().map((label, value) => (
<option value={value} key={value}>{label}</option>
))}
</select>
</div>
<div>
<select value={month.year()} onChange={e => onYearSelect(month, e.target.value)}>
{years}
</select>
</div>
</div>
)
}
render() {
return (
<SingleDatePicker
...
renderMonthElement={this.renderMonthElement}
/>
)
}
Modify the for loop on line 4 to print out whatever years you need.
Yes, it is possible since version [email protected]! (relevant pull request).
npm install react-dates@latest
Then utilize the newly introduced
renderMonthElement
prop to write your custom month&year selectors, for example: