mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-08 23:19:04 +01:00
Fix taglist doesn't always show current value on load
This commit is contained in:
parent
14a0fbcb75
commit
ab76966e02
@ -573,7 +573,7 @@ var et2_selectbox = (function(){ "use strict"; return et2_inputWidget.extend(
|
|||||||
// Value must be a real Array, not an object
|
// Value must be a real Array, not an object
|
||||||
this.input.val(typeof _value == 'object' && _value != null ? jQuery.map(_value,function(value,index){return [value];}) : _value);
|
this.input.val(typeof _value == 'object' && _value != null ? jQuery.map(_value,function(value,index){return [value];}) : _value);
|
||||||
this.input.trigger("liszt:updated");
|
this.input.trigger("liszt:updated");
|
||||||
this.value = this.input.val();
|
this.value = _value;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if(this.input == null)
|
if(this.input == null)
|
||||||
|
Loading…
Reference in New Issue
Block a user