Smoothly animating, very configurable and easy to install. No Ajax, pure Javascript. 4 skins available out of the box.
This is a port of MonkeyPhysics datepicker so thank him for the this great plugin. Also thanks to MadmanMonty, marfillaster and eerne for their changes
Below you will find a description and some docs how you can use the datepicker. Also note that this version (1.50beta1) is not final yet, but it should work well. If you find anything, please create a ticket at github or fork and fix it!
#JS
var dp = new DatePicker([element, options]);
- element: (element,string,array, optional) The element(s) to attach the datepicker to
- options: (object, optional) The options object
#JS
new DatePicker('inputField');
new DatePicker($$('input.date'));
new DatePicker(document.id('inputField'),{
timePicker: true,
pickerClass: 'datepicker_jqui'
});
Check out the options at this page: MonkeyPhysics datepicker
- toggle: (element,string,array) Toggle your datepicker by clicking another element.
- toggleElements is deprecated, use toggle instead
- You only have to set format if you do not want to use the same format defined by MooTools.lang
- if you use a custom format, be sure you use Date.defineParser() otherwise your default date will not parse correctly
- Carefull with draggable, it caused some trouble for me, but works great on the Test page.
- show - triggered when the datepicker pops up
- close - triggered after the datepicker is closed (destroyed)
- select - triggered when a date is selected
- next - triggered when changing to next month
- previous - triggered when changing to previous month
A method to attach the datepicker to input field(s)
#JS
dp.attach(element[,toggle]);
- element: (element,string,array) The element to attach the datepicker to
- toggle: (element,string,array, optional) If you want to use a toggle element
Detach the picker from the input field
#JS
dp.detach(element);
- element: (element,string,array) The element to detach the datepicker from
A method to show the datepicker manually
#JS
dp.show(element[,toggle,timestamp])
- element: (element,string) The input field
- toggle: (*element,string, optional) The toggle element (the picker will use the position of the toggle element)
- timestamp: (Date,number, optional) A date object or a timestamp.
A method to close the picker. You do not need link this to a link or something (because if you click anywhere but the picker, it will already close), This method is there to close the picker for example with a delay, or an Ajax Event or something.
#JS
dp.close();
This plugin supports MooTools.lang, so you can use the datepicker in your own language.
#JS
MooTools.lang.setLanguage("nl-NL");
new DatePicker('.demo');
- If you use more than one language on your page, things might get messed up (for example Date Parsing)