silverstripe-framework/javascript/CalendarDateField.js

21 lines
521 B
JavaScript
Raw Normal View History

(function($) {
$.concrete('ss', function($){
/**
* Formats a <input type="text"> field with a jQuery UI datepicker.
*
* Requires: concrete, ui.datepicker, jquery.metadata
*
* @author Ingo Schommer, SilverStripe Ltd.
*/
$('.calendardate').concrete({
onmatch: function() {
this.find('input').each(function() {
var conf = $(this).metadata();
if(conf.minDate) conf.minDate = new Date(Date.parse(conf.minDate));
$(this).datepicker(conf);
});
}
});
});
}(jQuery));