Fix multiselect/taglist values not properly set if value is an object instead of an array

This commit is contained in:
Nathan Gray 2014-12-08 18:14:00 +00:00
parent 0fbdc3e595
commit 68151ad8e7

View File

@ -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;