From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by lists.proxmox.com (Postfix) with ESMTPS id 37C929421C for ; Wed, 21 Feb 2024 15:46:28 +0100 (CET) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 11DBB1A52D for ; Wed, 21 Feb 2024 15:45:58 +0100 (CET) Received: from proxmox-new.maurer-it.com (proxmox-new.maurer-it.com [94.136.29.106]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by firstgate.proxmox.com (Proxmox) with ESMTPS for ; Wed, 21 Feb 2024 15:45:57 +0100 (CET) Received: from proxmox-new.maurer-it.com (localhost.localdomain [127.0.0.1]) by proxmox-new.maurer-it.com (Proxmox) with ESMTP id 28B284453F for ; Wed, 21 Feb 2024 15:45:57 +0100 (CET) Message-ID: <345df02c-9e53-4547-b09d-c9bd5dbac9ce@proxmox.com> Date: Wed, 21 Feb 2024 15:45:56 +0100 MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Content-Language: en-US To: pmg-devel@lists.proxmox.com References: <20240221130139.1950462-1-d.csapak@proxmox.com> From: Mira Limbeck In-Reply-To: <20240221130139.1950462-1-d.csapak@proxmox.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-SPAM-LEVEL: Spam detection results: 0 AWL 0.291 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% DMARC_MISSING 0.1 Missing DMARC policy KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record T_SCC_BODY_TEXT_LINE -0.01 - Subject: Re: [pmg-devel] [PATCH pmg-gui v2] fix #4510: add filter box to many grids X-BeenThere: pmg-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox Mail Gateway development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Feb 2024 14:46:28 -0000 On 2/21/24 14:01, Dominik Csapak wrote: > namely relay domains, transports, trusted networks, smtp whitelist + > when/what/who object grids. > > Adds a new 'FilterField', that takes a store and a list of columns to > filter, and filters on every change. > > Signed-off-by: Dominik Csapak > --- > changes from v1: > * lookup store automatically > * add ability to add a renderer so that we can match that what is displayed > * add that for the ObjectGroup's otype filter (previously otype_text) > > js/Makefile | 1 + > js/MyNetworks.js | 5 ++++ > js/ObjectGroup.js | 11 ++++++++ > js/RelayDomains.js | 5 ++++ > js/Transport.js | 5 ++++ > js/form/FilterField.js | 58 ++++++++++++++++++++++++++++++++++++++++++ > 6 files changed, 85 insertions(+) > create mode 100644 js/form/FilterField.js > The ObjectGroup filter now works on the visible text, as one would expect. One thing I found: IP: 10.67.0.100 Filter: 10.67. -> works IP: 10.67.0.100 Filter: 10.67.1 -> no match now, when you remove the `1` it should show a match again, but doesn't. only clearing the whole filter and adding the `10.67.` again works.