Avoid taking focus when setting value programmatically

This commit is contained in:
Nathan Gray 2016-03-09 17:37:04 +00:00
parent b0eee9d9a4
commit d105b8c751

View File

@ -721,7 +721,8 @@ var et2_taglist = (function(){ "use strict"; return et2_selectbox.extend([et2_IR
this._set_multiple(multiple); this._set_multiple(multiple);
} }
this.taglist.setSelection(values); this.taglist.clear(true);
this.taglist.addToSelection(values,true);
}, },
getValue: function() getValue: function()