mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-03 04:29:28 +01:00
if value has already been set, re-set it by it's id(s), fixes #60304
This commit is contained in:
parent
51b0888b5d
commit
75fddd325b
@ -636,6 +636,11 @@ export class et2_taglist extends et2_selectbox implements et2_IResizeable
|
||||
this.taglist.setData(function(query, cfg) {
|
||||
return widget._data.call(widget,query, cfg);
|
||||
});
|
||||
|
||||
// if value has already been set, re-set it by it's id(s)
|
||||
if (this.options.select_options.length && this.options.value.length) {
|
||||
this.set_value(this.options.value.map((v) => v.id));
|
||||
}
|
||||
}
|
||||
|
||||
set_disabled(disabled)
|
||||
|
Loading…
Reference in New Issue
Block a user