vote up 8 vote down star
5

Please one library per answer so that people can vote for the individually.

flag

67% accept rate

7 Answers

vote up 3 vote down check

Calendar Date Select

link|flag
vote up 0 vote down

ExtJS works well with Prototype and has a widgets that constantly gets extended by its community. DatePicker is one of them.

demo: http://www.lubber.de/extjs/datepickerplus/

link|flag
vote up 0 vote down

Scal is a simple, javascript calendar/date picker based on the Prototype JS library.

To create a calendar, just create an instance of scal with your base element and the update callback, along with optional parameters:

var cal = new scal('samplecal', updateelement, {
  oncalchange: function(d) {
    alert('Calendar Change: ' + d.format('yyyy-mm-dd'));
  }
});

Check out the demo and its cookbook.

link|flag
vote up 0 vote down

Date.js is pretty cool, although it's technically not a date picker per se.

link|flag
vote up 3 vote down

Timeframe for visual selection of date ranges...

link|flag
@CMS Wow - Timeframe is really nice. I'd upvote twice if I could. I would say it rivals or bests the date range ui on google analytics. – micahwittman Oct 16 '08 at 7:53
Thanks micahwittman, it's a really really nice control :) ... – CMS Oct 16 '08 at 19:09
vote up 2 vote down

jQuery's UI.DatePicker

(Prototype compatible via JQuery.noConflict())

link|flag
Along with date, add formatted time: derekallard.com/blog/post/… – micahwittman Oct 21 '08 at 18:00
vote up 0 vote down

Yahoo! UI Library: Calendar

"The Calendar component is a UI control that enables users to choose one or more dates from a graphical calendar presented in a single month or multi month interface. Calendars are generated entirely via script and can be navigated without any page refreshes."

"You'll find the Calendar Control to be a useful and easy-to-implement enhancement to any date-selection interaction; you may also find that the Calendar's foundation classes are a good place to start for more complex interfaces that visually organize date-tagged information (like appointments, photos, events, etc.)."

link|flag

Your Answer

Get an OpenID
or

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