[pve-devel] [PATCH widget-toolkit 1/2] Combogrid: clear filter on blur
Matthias Heiserer
m.heiserer at proxmox.com
Wed Mar 9 15:18:14 CET 2022
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 at 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
More information about the pve-devel
mailing list