I am using jQuery date picker to display the calendar all over my app. I want to know if I can use it to display the month and year (May 2010) and not the calendar?
Thanks, Aanu
|
I am using jQuery date picker to display the calendar all over my app. I want to know if I can use it to display the month and year (May 2010) and not the calendar? Thanks, Aanu
| |||||||||
feedback
|
|
Here's a hack (updated with entire .html file):
EDIT jsfiddle for the above example: http://jsfiddle.net/timbuethe/PxGHV/ | |||||||||||||||||||||
feedback
|
|
@Ben Koehler, that's prefect! I made a minor modification so that using a single instance of the date picker more than once works as expected. Without this modification the date is parsed incorrectly and the previously selected date is not highlighted.
| |||||
feedback
|
|
This code is working flawlessly to me:
| |||
|
feedback
|
|
Is it just me or is this not working as it should in IE(8)? The date changes when clicking done, but the datepicker opens up again, until you actually click somewhere in the page to loose focus on the input field... I'm looking in to solving this.
| |||||
feedback
|
|
Waht about: http://www.mattkruse.com/javascript/calendarpopup/ Select the month-select example | |||
feedback
|
|
after digging jQueryUI.com for datepicker, here's my conclusion and answer to your question. First, I would say no to your question. You can't use jQueryUI datepicker for picking month and year only. It is not supported. It has no callback function for that. But you can hack it to display only month and and year by using css to hide the days, etc. And I think won't make sense still cause you need the dates to be click in order to pick a date. I can say you just have to use another datepicker. Like what Roger suggested. | |||
|
feedback
|
This will solve the problem =) But I wanted the timeFormat yyyy-mm Only tried in FF4 though | |||
feedback
|
|
I had the problem of date picker mixed with month picker. I solved it like that.
| ||||
|
feedback
|
|
If anyone want that also for multiple calendars its not very hard to add this functionallity to jquery ui. with minified search for:
add this in front of x
search for
and replace it with
also search for
replace it with
for css you should use:
after that all is done just go to your desired datepicker init functions and provide setting var
| ||||
|
feedback
|
|
Use | |||
feedback
|
|
I know it's a little late response, but I got the same problem a couple of days before and I have came with a nice & smooth solution. First I found this great date picker here Then I've just updated the CSS class (jquery.calendarPicker.css) that comes with the example like this:
The plugin fires an event DateChanged when you change anything, so it doesn't matter that you are not clicking on a day (and it fits nice as a year and month picker) Hope it helps! | |||
|
feedback
|
|
maybe you would like kalendar: jquery datepicker | |||
|
feedback
|