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 00DA81FF0E4 for ; Tue, 14 Jul 2026 13:20:26 +0200 (CEST) Received: from gate001.proxmox.com (localhost.localdomain [127.0.0.1]) by gate001.proxmox.com (Proxmox) with ESMTP id AE5AC213EB; Tue, 14 Jul 2026 13:20:25 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=proton.me; s=protonmail; t=1784027435; x=1784286635; bh=StAFjwKMUvyzOfYU+z/KK7f7ZPe7IpLcHB3dpSRA+Rs=; h=Date:To:From:Subject:Message-ID:Feedback-ID:From:To:Cc:Date: Subject:Reply-To:Feedback-ID:Message-ID:BIMI-Selector; b=DnsCQJdTRbDpxJvYPjQZFDuSqY6+sq57QQzLV4pKhWWb/FY3TvPrfAebA0KGBAMaZ QwciKlaIe2LsrYy4kiTupapAZ+4C3u8Z/igP+N2ndHrZcPqJw4ZW629az2OCJTFVgz MHdbg974BgKCTINGTqGlKmmF34qBIJGbgUY94XuGNXDV2vnj3mmXYhnviSVfvA/doY F3SG0uWTQBeszMmZOqOz/t0Uk8G4l5pjJEPElZRnbh0JtyNKOoJ6ng6j4XvKQie349 1bCJIOYrrQ63kgYLZnnaHXDQsFI+xNVm2IeK7KlXRW7GtjaLQeKEPR8a53q3Fh3Lgm 2z/myJ2iF0Npg== Date: Tue, 14 Jul 2026 11:10:29 +0000 To: "pve-devel@lists.proxmox.com" From: 666Goofy666 <666goofy666@proton.me> Subject: ui: make selection fields searchable Message-ID: Feedback-ID: 177793653:user:proton X-Pm-Message-ID: 5890c16e1395360030af9f0ab317b5b24bba95ab MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-SPAM-LEVEL: Spam detection results: 2 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 SPF_HELO_PASS -0.001 SPF: HELO matches SPF record SPF_PASS -0.001 SPF: sender matches SPF record Message-ID-Hash: DWBJ7TDW557QMRD2IPC55PTKCJ65G5CI X-Message-ID-Hash: DWBJ7TDW557QMRD2IPC55PTKCJ65G5CI 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 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, thanks for your continued work on Proxmox. I would like to make pools and bridges forms selection fields searchable=20 I tried something like this patch : https://lore.proxmox.com/pve-devel/2024= 0412091613.30038-1-f.ebner@proxmox.com/ to `pve-manager/www/manager6/form/P= oolSelector.js` and it works as expected. However, for `pve-manager/www/manager6/form/BridgeSelector.js` the situatio= n is a bit different because the current behavior should be preserved: sele= ct the first filtered element at `pve-manager/www/manager6/qemu/NetworkEdit.js:83` and LXC (implicite tru= e) there is `autoSelect: true` which is handled/overridden at `proxmox-widg= et-toolkit/src/form/ComboGrid.js:435` This makes searching impossible, because as soon as one character is typed,= the first result is match. What would be the recommended approach? Thanks, Goofy