vote up 4 vote down star
3

I'm in search of a JavaScript month selection tool. I'm already using jQuery on the website, so if it were a jQuery plugin, that would fit nicely. I'm open to other options, as well.

Basically, I'm after a simplified version of the jQuery UI Date Picker. I don't care about the day of the month, just the month and year. Using the Date Picker control feels like overkill and a kludge. I know I could just use a pair of select boxes, but that feels cluttered, and then I also need a confirmation button.

I'm envisioning a grid of either two rows of six columns, or three rows of four columns, for month selection, and current and future years across the top. (Maybe the ability to list a few years? I can't see anyone ever needing to go more than a year or two ahead, so if I could list the current and next two years, that would be swell)

It's really just a dumbed down version of the DatePicker. Does something like this exist?

flag

What have you done in the meantime? I'm also looking for exactly the same right now. – tharkun Jul 27 at 14:18
I've had to put the entire project on hold, so for now the problem has been relegated to the back burner. – Adam Tuttle Jul 28 at 17:20

6 Answers

vote up 0 vote down

Sorry for not providing a finished solution. But you say "I don't care about the day of the month, just the month and year", which fits perfectly to the experimental "maximum 2 clicks jQuery timepickr plugin". Maybe you can modify this plugin so, that you can select month and year instead of hour and minutes?

link|flag
Not a bad idea, but I don't think it will be a fit for this website. Thanks, though. – Adam Tuttle Oct 13 '08 at 18:49
vote up 1 vote down

I used this script in a program a while back. While it is ancient, it works on all browsers well. If you look down to "Month-select calendar" I believe that is what you are looking for. The example that is there has the calendar opening in a new window (ew) but 1 setting (like the 2nd example) makes it show ala jQuery. Good luck.

link|flag
vote up 0 vote down

I just had a pick a date picker the other day. I found two other interesting examples that might help you out, but I'm not sure how you are going to do this without showing the calendar. Most "date pickers" just assume you are going to want to see a calendar. You might do better to look for a custom dropdown that has some custom buttons you can configure.

Here are the ones I looked at:

http://www.kelvinluck.com/assets/jquery/datePicker/v2/demo/index.html

I ended up using this one: http://jqueryui.com/demos/datepicker/

If you are any good with JQuery, you might have come up with a good little project.

link|flag
vote up 1 vote down

I've been looking into jquery datepickers extensively, and I don't think you'll find a packaged solution... :(

However, what you may be able to do, if I'm reading you right, is make an html list of months, float them menue-ish style, and make them selectable values with jQuery.

Again, I'm not totally sure exactly how you want things to operate, but this would be a simple solution w/o bloat. :)

Does that make a little sense to you? (it does to me, but often times what I think doesn't translate to others)

link|flag
vote up 0 vote down

Have a look at this link: http://project.yctin.com/monthpicker/demo/. I think it does what your looking for.

link|flag
Yeah, that's the data I'm after; but the UI is enormous (and ugly). Thanks, though. – Adam Tuttle Nov 19 at 19:56
vote up 0 vote down

I'm after the exact same thing. The month picker listed above comes close, but it is quite kludgy. It would be nice to have something that looks and behaves like jQueryDatePicker, but with the option to pick months rather than days...

The monthpicker author seems responsive to user feedback and I added a request for DatePicker-esque behavior. I'll post an update here if he comes through!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.