I have experimented with the datepicker in the jQuery UI and can get it working with select boxes but only when there is a day, month and year select box (http://www.kelvinluck.com/assets/jquery/datePicker/v2/demo/datePickerIntoSelects.html).
What I need is to have a day and a month-year box like the one that can be seen here…(http://www.bookassist.com/hotels/index.jsp?source=org)
Anyone out there know if this can be done? Totally hit a brick wall.
Basically, you need to modify this part from http://www.kelvinluck.com/assets/jquery/datePicker/v2/demo/datePickerIntoSelects.html
Change this part, the initialization of the datePicker,
to this, by adding the months array and updating the endDate.
Then, change the function that updates the 3 selects (d,m,y)
to just (d,m) with the month specified in this format “August 2011”.
Then change the function that updates the picker when changing the selects from this
Into this, (EDIT: I mistakenly swapped the year value and day value in my previous answer.)
This is the http://jsfiddle.net/2Nedr/1/ that does just that.
Hope that solves your problem.