mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:20 +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
|
||||
this.input.val(typeof _value == 'object' && _value != null ? jQuery.map(_value,function(value,index){return [value];}) : _value);
|
||||
this.input.trigger("liszt:updated");
|
||||
this.value = this.input.val();
|
||||
this.value = _value;
|
||||
return;
|
||||
}
|
||||
if(this.input == null)
|
||||
|
Loading…
Reference in New Issue
Block a user