mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-23 00:13:35 +01:00
Fix taglist doesn't always show current value on load
This commit is contained in:
parent
9780858276
commit
dd1cefddb2
@ -524,7 +524,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