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 F2B651FF12C for ; Wed, 05 Aug 2026 12:03:58 +0200 (CEST) Received: from gate001.proxmox.com (localhost.localdomain [127.0.0.1]) by gate001.proxmox.com (Proxmox) with ESMTP id 6AFD521891; Wed, 05 Aug 2026 12:03:58 +0200 (CEST) Message-ID: <73bc945e-f210-4a98-abfc-5a2c69763ef4@proxmox.com> Date: Wed, 5 Aug 2026 12:03:54 +0200 MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Beta Subject: Re: [PATCH pve-manager] Web UI: VM creation Wizard: Pupulate EFI and TPM storage by default To: Elias Huhsovitz , pve-devel@lists.proxmox.com References: <20260803110534.149543-1-j.theisen@proxmox.com> Content-Language: en-US From: Jonas Theisen In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-Bm-Milter-Handled: 55990f41-d878-4baa-be0a-ee34c49e34d2 X-Bm-Transport-Timestamp: 1785924221669 X-SPAM-LEVEL: Spam detection results: 0 DMARC_MISSING 0.1 Missing DMARC policy KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment (newer systems) RCVD_IN_DNSWL_LOW -0.7 Sender listed at https://www.dnswl.org/, low trust SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record Message-ID-Hash: CGOFRIJOWFBNXTSMF2ALATIJFJFISULM X-Message-ID-Hash: CGOFRIJOWFBNXTSMF2ALATIJFJFISULM X-MailFrom: j.theisen@proxmox.com 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: On 8/5/26 10:49, Elias Huhsovitz wrote: > Nice quality of life change! Just one small bug: > > The "EFI Storage" and "TPM Storage" fields are only populated the first > time the options are selected. > > Repeatedly selecting/unselecting the checkboxes "Addi EFI Disk" and "Add > TPM", will not cause the respective storage fields to be populated, reverting > to the old behaviour. According to my very limited knowledge of Javascript and our implementation this might be expected or working as intended? Since the autoSelect property is mapped as a CBind in [pve-manager.git] / www / manager6 / form / IsoSelector.js > 76             cbind: { > 77                 nodename: '{nodename}', > 78                 autoSelect: '{insideWizard}', > 79                 insideWizard: '{insideWizard}', > 80                 disabled: '{disabled}', > 81                 labelWidth: '{labelWidth}', > 82                 labelAlign: '{labelAlign}', > 83             } and [proxmox-widget-toolkit.git] / src / mixin / CBind.js states > 2  * The Proxmox CBind mixin is intended to supplement the 'bind' > mechanism > 3  * of ExtJS. In contrast to the 'bind', 'cbind' only acts during the > creation > 4  * of the component, not during its lifetime. It's only applied once > before > 5  * the 'initComponent' method is executed, and thus you have only access > 6  * to the basic initial configuration of it. i assume the selector is not recreated after un- and reticking the checkbox. For regular disks this situation never arose afaict since the entry is always freshly created. I currently don't know where to look for the culprit here or maybe am even on the wrong track and am open for suggestions.