]> git.proxmox.com Git - proxmox-widget-toolkit.git/commitdiff
Combogrid: clear filter on blur
authorMatthias Heiserer <m.heiserer@proxmox.com>
Wed, 9 Mar 2022 14:18:14 +0000 (15:18 +0100)
committerDominik Csapak <d.csapak@proxmox.com>
Tue, 15 Mar 2022 10:03:20 +0000 (11:03 +0100)
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

index 923a55a7ea9c4dd95a9d58f1022066c44dfff13d..33c1d75b4e378f6aaf2d98a0db72816e65174d30 100644 (file)
@@ -325,6 +325,7 @@ Ext.define('Proxmox.form.ComboGrid', {
             me.changingFilters = true;
             me.store.removeFilter(filter, true);
             me.changingFilters = false;
+           me.store.fireEvent('refresh');
         }
     },