I went through this post http://stackoverflow.com/questions/2208480/jquery-date-picker-to-show-month-year-only which is very helpful to me in order to hack the datetime picker UI to suit my situation. But as I have several datetime picker on the same form, this happens. The css display:none is aim to 'hide' the days not to be shown. But if I have several datetime picker on the same form but only one I wish to make one of it monthpicker, how can I achieve that? With thw css, it makes all the days on the all datetime calender UI disappear since the css will change the attribute of .ui-datepicker-calendar. Any suggestions are welcome. Thanks. This is my first post.
|
feedback
|
|
Currently, datepicker creates only 1 element per page that all 'datepicker' inputs share, hence why the answer to the linked question does not work. The beforeShow event does not allow editing the datepicker element with .addClass() or .css() (as the element structure is refreshed from the datepicker script when it shows.) To get around this, I found that the focus event for the input element appears to run code after the datepicker is shown. It is a simple workaround to a frustrating problem. Here is my code:
| |||||||||||
feedback
|
|
I did something similar to this, but made a seperate 'version' of the datepicker script and called it monthpicker, having it's own CSS selectors and CSS file. This meant you could use either or both on the same page. | |||||||
feedback
|
|
I used a slightly different version of the code that Ben posted. Instead of relying on the focus event I added
into the beforeShow method and
into the onClose. This adds and removes a class on the common div used by the all the datepicker widgets. The date calendar div can then be targeted in css using
| |||
feedback
|
|
I have yet another solution based on the above with some improvements. In my HTML I hide the day picker by adding this as I only have one on the page:
I then initialise my datepicker as others have done so and add a bit of code to the onChangeMonthYear event:
Note: the
If you don't add this you will get a stack overflow because this function receives a 1 based index month but setDate uses a normal 0 based month. | |||
|
feedback
|
|
Previous solution will not work with different formats. Also setDate will do nothing in beforeShow. Proper way to do it will be:
I used parseDate from datepicker to handle different date formats and return date from field as defaultDate option. Required CSS:
| ||||
|
feedback
|
|
Ben's solution works perfectly, just made a minor change, I used onChangeMonthYear instead of onClose:
| |||
|
feedback
|
|
This code is working flawlessly to me:
| |||
|
feedback
|