From aabda23bbd49e22ecf81e282eceaaef07bc0a6df Mon Sep 17 00:00:00 2001 From: nathan Date: Wed, 3 Aug 2022 16:28:18 -0600 Subject: [PATCH] Et2Select: Turn on hoist, we want it on more than off In particular, ACL dialog, but there's a bunch of other places too. --- api/js/etemplate/Et2Select/Et2Select.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/api/js/etemplate/Et2Select/Et2Select.ts b/api/js/etemplate/Et2Select/Et2Select.ts index 4950a336a4..9b0e4e59b5 100644 --- a/api/js/etemplate/Et2Select/Et2Select.ts +++ b/api/js/etemplate/Et2Select/Et2Select.ts @@ -159,6 +159,9 @@ export class Et2Select extends Et2WithSearchMixin(Et2WidgetWithSelect) constructor(...args : any[]) { super(); + // We want this on more often than off + this.hoist = true; + this._triggerChange = this._triggerChange.bind(this); this._doResize = this._doResize.bind(this); }