I have a form with a date attribute.
Right now I'm using f.date_select :begin_date, discard_day: true but that displays month and year in a each own's select menu respectively.
Is it possible to have both month and year displayed in the same select menu, like below?
2013 January
2013 February
2013 March
2013 April
etc.
It's 7 years later, but this is still is still coming up when I Googled for this exact problem.
You can make it work with a standard
ActionView::Helpers::FormBuilder#selectand feed it the set of month+years by hand