I want to apply datepicker in my project. It's easy to apply it on a single textbox. But I want I will apply three to pick full date means I'm using three textboxes one for day, second for month and last for year.

Now what do I want? I want when I click in day's textbox only dates will pop up. When I click in month's textbox month's pop up comes out and the same for year's textbox.

link|improve this question

59% accept rate
2  
Datepicker only works for picking dates. It does not split into DayPicker, MonthPicker, and YearPicker. – Peter Olson Mar 14 '11 at 17:24
What have you tried? – Kyle Trauberman Mar 14 '11 at 17:26
1  
Then why do you use Datepicker? Why not just making three dropdownboxes? Style them with css and you'll have exactly what you want. – rsplak Mar 14 '11 at 17:28
i know sir but sir its users requirement he want this.... – raman Mar 14 '11 at 17:29
You need to seriously re-think your UI design. What you are attempting does not conform to accepted UI standards. If your user is requiring this, ask him/her to show you an example on the web that does this, then copy their code. If he/she can't find one, then you can use that as an example of why NOT to do this. – camainc Mar 14 '11 at 18:01
feedback

2 Answers

up vote 0 down vote accepted

Well, how about an alternative with this one: http://keith-wood.name/dateEntry.html by Keith Wood - spinners on each part...

FYI, I really like his time picker also :)

link|improve this answer
feedback

The jQuery UI datepicker is simply not the tool for the job. You might be able to use some of the techniques it uses.

If you're going to do a three-input date picker, you might want to consider having your inputs be <select> elements instead of just inputs.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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