From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from gate001.proxmox.com (gate001.proxmox.com [IPv6:2a0f:8001:1:32::40]) by lore.proxmox.com (Postfix) with ESMTPS id 778401FF0B9 for ; Sun, 06 Sep 2026 21:23:16 +0200 (CEST) Received: from gate001.proxmox.com (localhost.localdomain [127.0.0.1]) by gate001.proxmox.com (Proxmox) with ESMTP id 6D95D21538; Sun, 06 Sep 2026 21:23:11 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=proton.me; s=protonmail; t=1788722183; x=1788981383; bh=GhkglXy6VrFg4lmvdKO1cE0Wu5AoxqMTB/LAXIvysS0=; h=Date:To:From:Cc:Subject:Message-ID:In-Reply-To:References: Feedback-ID:From:To:Cc:Date:Subject:Reply-To:Feedback-ID: Message-ID:BIMI-Selector; b=lIrARO9kHkB95DAhtqXNSrRsT6A++n9wqC6VUPbjGjYYJ5ZkScI61z9rYefpsDvu1 dB+ruwW+ot7g/biIYzUEWWCJUfy7oEEl+oTBH2Lqxzf+haKCMp9JPqQwkdbResR3dr MBlsfUR585u+1u+6N6rdRwijmlVaFN8GjmOM50B5jCYQabm2sjmXUVtpB+c+MZdz3F Dz130GmPB3P9oxmeteFV/HdblMZK2Mtk+ejlARZyMCodSBtgaJYLSKNHNGnjcM4i8W 3KTUYVdRzsCJ1rjKED1K8+6uXvv7LKYkEBryIfawcEKXkcyzSV/7mri4hPm1q8Mmw5 Z4ARfzH1pZ3+w== Date: Sun, 06 Sep 2026 19:16:19 +0000 To: Dominik Csapak From: 666Goofy666 <666goofy666@proton.me> Subject: Re: [PATCH manager] ui: form: make pools searchable Message-ID: In-Reply-To: References: <20260715220134.352377-2-666goofy666@proton.me> Feedback-ID: 177793653:user:proton X-Pm-Message-ID: 4ad5b8d55708c967862575fdfbbc9ced73de6439 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-SPAM-LEVEL: Spam detection results: 1 DKIM_SIGNED 0.1 Message has a DKIM or DK signature, not necessarily valid DKIM_VALID -0.1 Message has at least one valid DKIM or DK signature DKIM_VALID_AU -0.1 Message has a valid DKIM or DK signature from author's domain DKIM_VALID_EF -0.1 Message has a valid DKIM or DK signature from envelope-from domain DMARC_PASS -0.1 DMARC pass policy FREEMAIL_ENVFROM_END_DIGIT 1 Envelope-from freemail username ends in digit FREEMAIL_FROM 0.001 Sender email is commonly abused enduser mail provider FROM_STARTS_WITH_NUMS 0.553 From: starts with several numbers KAM_INFOUSMEBIZ 0.75 Prevalent use of .info|.us|.me|.me.uk|.biz|xyz|id|rocks|life domains in spam/malware RCVD_IN_DNSWL_LOW -0.7 Sender listed at https://www.dnswl.org/, low trust SPF_HELO_PASS -0.001 SPF: HELO matches SPF record SPF_PASS -0.001 SPF: sender matches SPF record Message-ID-Hash: JBMLXK4AOIJGO6JUGSRLO2VPPSSGKTUF X-Message-ID-Hash: JBMLXK4AOIJGO6JUGSRLO2VPPSSGKTUF X-MailFrom: 666goofy666@proton.me X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; loop; banned-address; emergency; member-moderation; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; digests; suspicious-header CC: pve-devel@lists.proxmox.com X-Mailman-Version: 3.3.10 Precedence: list List-Id: Proxmox VE development discussion List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: hi, CLA is ok! let me know if I should resend the patch. best regards! On Thursday, July 16th, 2026 at 14:09, Dominik Csapak wrote: > hi, >=20 > thanks again for wanting to contribute, did you already read the > https://pve.proxmox.com/wiki/Developer_Documentation ? >=20 > especially the part about the CLA (on the very bottom of the page). >=20 > We'd need one signed before we can include any contribution from you. >=20 > thanks! >=20 > On 7/16/26 12:10 AM, 666Goofy666 wrote: > > Enable typing in the pool selector to improve usability when many pools= are available. > > > > Signed-off-by: 666Goofy666 <666goofy666@proton.me> > > --- > > www/manager6/form/PoolSelector.js | 4 ++++ > > 1 file changed, 4 insertions(+) > > > > diff --git a/www/manager6/form/PoolSelector.js b/www/manager6/form/Pool= Selector.js > > index d4f45622..b00b1b16 100644 > > --- a/www/manager6/form/PoolSelector.js > > +++ b/www/manager6/form/PoolSelector.js > > @@ -8,6 +8,10 @@ Ext.define( > > valueField: 'poolid', > > displayField: 'poolid', > > > > + editable: true, > > + anyMatch: true, > > + forceSelection: true, > > + > > initComponent: function () { > > var me =3D this; > > >=20 >=20 >=20 >=20 >