mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-26 01:43:47 +01:00
Et2Select: Fix change event did not fire when free entry was added
This commit is contained in:
parent
d33377e17d
commit
70be19cdfb
@ -464,7 +464,7 @@ export const Et2WithSearchMixin = dedupeMixin(<T extends Constructor<LitElement>
|
|||||||
|
|
||||||
protected _noResultsTemplate()
|
protected _noResultsTemplate()
|
||||||
{
|
{
|
||||||
if(this._total_result_count !== 0)
|
if(this._total_result_count !== 0 || !this._searchInputNode?.value)
|
||||||
{
|
{
|
||||||
return nothing;
|
return nothing;
|
||||||
}
|
}
|
||||||
@ -1294,7 +1294,7 @@ export const Et2WithSearchMixin = dedupeMixin(<T extends Constructor<LitElement>
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
// Make sure not to double-add
|
// Make sure not to double-add
|
||||||
if(!this.querySelector("[value='" + text.replace(/'/g, "\\\'") + "']") && !this.__select_options.find(o => o.value == text))
|
if(!this.querySelector("[value='" + text.replace(/'/g, "\\\'") + "']") && !this.select_options.find(o => o.value == text))
|
||||||
{
|
{
|
||||||
this.__select_options.push(<SelectOption>{
|
this.__select_options.push(<SelectOption>{
|
||||||
value: text.trim(),
|
value: text.trim(),
|
||||||
@ -1315,6 +1315,7 @@ export const Et2WithSearchMixin = dedupeMixin(<T extends Constructor<LitElement>
|
|||||||
{
|
{
|
||||||
this.value = text;
|
this.value = text;
|
||||||
}
|
}
|
||||||
|
this.dispatchEvent(new Event("change", {bubbles: true}));
|
||||||
|
|
||||||
// If we were overlapping edit inputbox with the value display, reset
|
// If we were overlapping edit inputbox with the value display, reset
|
||||||
if(!this.readonly && this._activeControls?.classList.contains("novalue"))
|
if(!this.readonly && this._activeControls?.classList.contains("novalue"))
|
||||||
|
Loading…
Reference in New Issue
Block a user