mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
MINOR Refactored DateField.js from inline jQuery.live() application to a ssDatepicker() plugin which can be applied explicitly as well
This commit is contained in:
parent
b05e3bd890
commit
e3cceb6038
@ -1,28 +1,33 @@
|
|||||||
(function($) {
|
(function($) {
|
||||||
/**
|
|
||||||
* 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.
|
|
||||||
*/
|
|
||||||
var fields = $('.field.date input.text');
|
|
||||||
|
|
||||||
fields.siblings("button").addClass("ui-icon ui-icon-calendar");
|
$.fn.extend({
|
||||||
|
ssDatepicker: function(opts) {
|
||||||
|
return $(this).each(function() {
|
||||||
|
if($(this).data('datepicker')) return; // already applied
|
||||||
|
|
||||||
|
this.siblings("button").addClass("ui-icon ui-icon-calendar");
|
||||||
|
|
||||||
|
var holder = $(this).parents('.field.date:first'),
|
||||||
|
config = $.extend(opts || {}, $(this).metadata({type: 'class'}), {});
|
||||||
|
if(!config.showcalendar) return;
|
||||||
|
|
||||||
fields.live('click', function() {
|
if(config.locale && $.datepicker.regional[config.locale]) {
|
||||||
var holder = $(this).parents('.field.date:first'), config = $(this).metadata({type: 'class'});
|
config = $.extend(config, $.datepicker.regional[config.locale], {});
|
||||||
if(!config.showcalendar) return;
|
}
|
||||||
|
|
||||||
if(config.locale && $.datepicker.regional[config.locale]) {
|
if(config.min) config.minDate = $.datepicker.parseDate('yy-mm-dd', config.min);
|
||||||
config = $.extend(config, $.datepicker.regional[config.locale], {});
|
if(config.max) config.maxDate = $.datepicker.parseDate('yy-mm-dd', config.max);
|
||||||
|
|
||||||
|
// 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);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
});
|
||||||
if(config.min) config.minDate = $.datepicker.parseDate('yy-mm-dd', config.min);
|
|
||||||
if(config.max) config.maxDate = $.datepicker.parseDate('yy-mm-dd', config.max);
|
$('.field.date input.text').live('click', function() {
|
||||||
|
$(this).ssDatepicker();
|
||||||
// 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);
|
|
||||||
$(this).datepicker('show');
|
$(this).datepicker('show');
|
||||||
});
|
});
|
||||||
}(jQuery));
|
}(jQuery));
|
Loading…
Reference in New Issue
Block a user