Fixed altField implementation
This commit is contained in:
parent
6ae78e06be
commit
94ea439217
16
jquery-ui-timepicker-addon.js
vendored
16
jquery-ui-timepicker-addon.js
vendored
|
@ -472,12 +472,13 @@
|
|||
formattedDateTime = this.formattedTime;
|
||||
}
|
||||
else if (this.defaults.timeOnly !== true && (this.defaults.alwaysSetTime || timeAvailable)) {
|
||||
formattedDateTime += ' ' + this.formattedTime;
|
||||
}
|
||||
|
||||
if ((this.$altInput) && this.$altInput != null)
|
||||
{
|
||||
this.$altInput.val(formattedDateTime);
|
||||
if ((this.$altInput) && this.$altInput != null)
|
||||
{
|
||||
this.$altInput.val(this.formattedTime);
|
||||
}
|
||||
else{
|
||||
formattedDateTime += ' ' + this.formattedTime;
|
||||
}
|
||||
}
|
||||
|
||||
this.formattedDateTime = formattedDateTime;
|
||||
|
@ -518,7 +519,8 @@
|
|||
tp.second = tp.defaults.second;
|
||||
tp.ampm = '';
|
||||
tp.$input = $(input);
|
||||
tp.$altInput = $($.datepicker._get(inst, 'altField'));
|
||||
if(opts.altField != undefined && opts.altField != '')
|
||||
tp.$altInput = $($.datepicker._get(inst, 'altField'));
|
||||
tp.inst = inst;
|
||||
tp.addTimePicker(inst);
|
||||
if ($.isFunction(opts.beforeShow)) {
|
||||
|
|
Loading…
Reference in a new issue