mirror of
https://github.com/xdan/datetimepicker.git
synced 2024-11-18 06:24:22 +00:00
Trim depreacted fixed
This commit is contained in:
parent
1d1e91e7b0
commit
1a685952f6
@ -1306,8 +1306,8 @@ var datetimepickerFactory = function ($) {
|
|||||||
input
|
input
|
||||||
.off('blur.xdsoft')
|
.off('blur.xdsoft')
|
||||||
.on('blur.xdsoft', function () {
|
.on('blur.xdsoft', function () {
|
||||||
if (options.allowBlank && (!$.trim($(this).val()).length ||
|
if (options.allowBlank && (!$(this).val().trim().length ||
|
||||||
(typeof options.mask === "string" && $.trim($(this).val()) === options.mask.replace(/[0-9]/g, '_')))) {
|
(typeof options.mask === "string" && $(this).val().trim() === options.mask.replace(/[0-9]/g, '_')))) {
|
||||||
$(this).val(null);
|
$(this).val(null);
|
||||||
datetimepicker.data('xdsoft_datetime').empty();
|
datetimepicker.data('xdsoft_datetime').empty();
|
||||||
} else {
|
} else {
|
||||||
@ -2441,7 +2441,7 @@ var datetimepickerFactory = function ($) {
|
|||||||
if (isValidValue(options.mask, val)) {
|
if (isValidValue(options.mask, val)) {
|
||||||
this.value = val;
|
this.value = val;
|
||||||
setCaretPos(this, pos);
|
setCaretPos(this, pos);
|
||||||
} else if ($.trim(val) === '') {
|
} else if (val.trim() === '') {
|
||||||
this.value = options.mask.replace(/[0-9]/g, '_');
|
this.value = options.mask.replace(/[0-9]/g, '_');
|
||||||
} else {
|
} else {
|
||||||
input.trigger('error_input.xdsoft');
|
input.trigger('error_input.xdsoft');
|
||||||
@ -2521,7 +2521,7 @@ var datetimepickerFactory = function ($) {
|
|||||||
val = valueBeforeCursor + insertChar + valueAfterNextChar
|
val = valueBeforeCursor + insertChar + valueAfterNextChar
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($.trim(val) === '') {
|
if (val.trim() === '') {
|
||||||
// if empty, set to default
|
// if empty, set to default
|
||||||
val = defaultBlank
|
val = defaultBlank
|
||||||
} else {
|
} else {
|
||||||
@ -2542,7 +2542,7 @@ var datetimepickerFactory = function ($) {
|
|||||||
if (isValidValue(options.mask, val)) {
|
if (isValidValue(options.mask, val)) {
|
||||||
this.value = val;
|
this.value = val;
|
||||||
setCaretPos(this, pos);
|
setCaretPos(this, pos);
|
||||||
} else if ($.trim(val) === '') {
|
} else if (val.trim() === '') {
|
||||||
this.value = options.mask.replace(/[0-9]/g, '_');
|
this.value = options.mask.replace(/[0-9]/g, '_');
|
||||||
} else {
|
} else {
|
||||||
input.trigger('error_input.xdsoft');
|
input.trigger('error_input.xdsoft');
|
||||||
|
Loading…
Reference in New Issue
Block a user