vote up -2 vote down star

I have an html page that contains startdate and enddate as user inputs. I need to let the user choose from a calendar for these inputs, instead of requiring the user to type the dates. Can you suggest anything to help?

flag

0% accept rate
Any reason you've asked almost the same question 5 times now? – DanSingerman Dec 23 '08 at 11:15

4 Answers

vote up 0 vote down

If you're on ASP.NET you could use this one; http://ra-ajax.org/samples/Ajax-Calendar.aspx

I work for Ra-Ajax BTW...

link|flag
vote up 3 vote down

I think once you start needing this kind of controls, you should move to using javascript libraries.

I recommend you jquery or YUI (you have more: prototype, mootools, etc...)

Concretely for the calendar control, you can use YUI, they have a special js for this. Once you download YUI you can find it here: /yui/build/calendar-min.js and you have a very good example in the path: /yui/examples/calendar.

The method you use to create it is: new YAHOO.widget.Calendar("cal","calendario", { LOCALE_WEEKDAYS:"1char", START_WEEKDAY: 1, mindate:"1/1/2008"});

If you prefer jquery, you will find a calendar control here:

http://ui.jquery.com/repository/tags/latest/demos/functional/#ui.datepicker

link|flag
vote up -2 vote down

I have an HTML page:

StartDate: yyyy-mm-dd EndDate: yyyy-mm-dd

Currenly these two fields are text fields.

I would like to implement this using calender control where user can select any date from the calender.

link|flag
You should have edited your question. – Vijay Dev Dec 21 '08 at 8:03
Are you trying to find a calendar input (instead of textboxes)? Or, find a picker with format options (YYYY-MM-DD vs. MM/DD/YYYY)? – Jonathan Lonowski Dec 21 '08 at 8:46
vote up 3 vote down

Check this out - http://www.xaprb.com/blog/2005/09/29/javascript-date-chooser/

By the way, you ought to be more clear and specific in asking your question.

link|flag

Your Answer

Get an OpenID
or

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