From: Matthias Heiserer <m.heiserer@proxmox.com>
To: pve-devel@lists.proxmox.com
Subject: [pve-devel] [PATCH widget-toolkit 1/2] Combogrid: clear filter on blur
Date: Wed, 9 Mar 2022 15:18:14 +0100 [thread overview]
Message-ID: <20220309141815.4118555-1-m.heiserer@proxmox.com> (raw)
Previously, deselecting and reselecting the input field
led to the previous filter still being applied, although the
input field was cleared.
Signed-off-by: Matthias Heiserer <m.heiserer@proxmox.com>
---
src/form/ComboGrid.js | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/form/ComboGrid.js b/src/form/ComboGrid.js
index 923a55a..33c1d75 100644
--- a/src/form/ComboGrid.js
+++ b/src/form/ComboGrid.js
@@ -325,6 +325,7 @@ Ext.define('Proxmox.form.ComboGrid', {
me.changingFilters = true;
me.store.removeFilter(filter, true);
me.changingFilters = false;
+ me.store.fireEvent('refresh');
}
},
--
2.30.2
next reply other threads:[~2022-03-09 14:18 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-03-09 14:18 Matthias Heiserer [this message]
2022-03-09 14:18 ` [pve-devel] [PATCH widget-toolkit 2/2] ComboGrid: fix sorting when filtering Matthias Heiserer
2022-03-15 10:06 ` Dominik Csapak
2022-03-16 8:55 ` Matthias Heiserer
2022-03-15 10:03 ` [pve-devel] applied: [PATCH widget-toolkit 1/2] Combogrid: clear filter on blur Dominik Csapak
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20220309141815.4118555-1-m.heiserer@proxmox.com \
--to=m.heiserer@proxmox.com \
--cc=pve-devel@lists.proxmox.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.