2010-10-15 05:48:39 +02:00
|
|
|
(function($) {
|
2011-08-16 04:58:17 +02:00
|
|
|
|
2011-09-27 12:23:17 +02:00
|
|
|
$.fn.extend({
|
|
|
|
ssDatepicker: function(opts) {
|
|
|
|
return $(this).each(function() {
|
|
|
|
if($(this).data('datepicker')) return; // already applied
|
|
|
|
|
2012-02-16 17:14:08 +01:00
|
|
|
$(this).siblings("button").addClass("ui-icon ui-icon-calendar");
|
2011-09-27 12:23:17 +02:00
|
|
|
|
|
|
|
var holder = $(this).parents('.field.date:first'),
|
2012-02-16 17:14:08 +01:00
|
|
|
config = $.extend(opts || {}, $(this).data(), {});
|
2011-09-27 12:23:17 +02:00
|
|
|
if(!config.showcalendar) return;
|
|
|
|
|
|
|
|
if(config.locale && $.datepicker.regional[config.locale]) {
|
|
|
|
config = $.extend(config, $.datepicker.regional[config.locale], {});
|
|
|
|
}
|
|
|
|
|
|
|
|
if(config.min) config.minDate = $.datepicker.parseDate('yy-mm-dd', config.min);
|
|
|
|
if(config.max) config.maxDate = $.datepicker.parseDate('yy-mm-dd', config.max);
|
2011-08-16 04:58:17 +02:00
|
|
|
|
2011-09-27 12:23:17 +02:00
|
|
|
// Initialize and open a datepicker
|
|
|
|
// live() doesn't have "onmatch", and jQuery.entwine is a bit too heavyweight for this, so we need to do this onclick.
|
|
|
|
config.dateFormat = config.jqueryDateformat;
|
|
|
|
$(this).datepicker(config);
|
|
|
|
});
|
2010-10-15 05:48:39 +02:00
|
|
|
}
|
2011-09-27 12:23:17 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
$('.field.date input.text').live('click', function() {
|
|
|
|
$(this).ssDatepicker();
|
2010-10-15 05:48:39 +02:00
|
|
|
$(this).datepicker('show');
|
|
|
|
});
|
|
|
|
}(jQuery));
|