mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 16:03:47 +01:00
Fix multiselect/taglist values not properly set if value is an object instead of an array
This commit is contained in:
parent
0fbdc3e595
commit
68151ad8e7
@ -449,7 +449,8 @@ var et2_selectbox = et2_inputWidget.extend(
|
||||
}
|
||||
if(this.input !== null && (this.options.tags || this.options.search))
|
||||
{
|
||||
this.input.val(_value);
|
||||
// Value must be a real Array, not an object
|
||||
this.input.val(jQuery.map(_value,function(value,index){return [value];}));
|
||||
this.input.trigger("liszt:updated");
|
||||
this.value = this.input.val();
|
||||
return;
|
||||
|
Loading…
Reference in New Issue
Block a user