From: Dominik Csapak <d.csapak@proxmox.com>
To: pve-devel@lists.proxmox.com
Subject: [PATCH manager v2 03/17] ui: form: add filtered KVComboBox
Date: Tue, 3 Feb 2026 11:00:08 +0100 [thread overview]
Message-ID: <20260203102118.1430545-4-d.csapak@proxmox.com> (raw)
In-Reply-To: <20260203102118.1430545-1-d.csapak@proxmox.com>
this makes it easier to have the same KVComboBox, but for different
configurations, depending on a single 'category' value. This is useful
for having the same KVComboBox in different categories, such as the cpu
architecture, for e.g. the scsi hw or bios selector, which need different
values for different architectures.
Instead of implementing the logic for each KVComboBox, abstract it away,
so we can reuse the code and have consistent behavior here.
Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
---
www/manager6/Makefile | 1 +
www/manager6/form/FilteredKVComboBox.js | 67 +++++++++++++++++++++++++
2 files changed, 68 insertions(+)
create mode 100644 www/manager6/form/FilteredKVComboBox.js
diff --git a/www/manager6/Makefile b/www/manager6/Makefile
index 944dd873..8857045c 100644
--- a/www/manager6/Makefile
+++ b/www/manager6/Makefile
@@ -17,6 +17,7 @@ JSSRC= \
data/ResourceStore.js \
data/model/RRDModels.js \
container/TwoColumnContainer.js \
+ form/FilteredKVComboBox.js \
form/ACMEAPISelector.js \
form/ACMEAccountSelector.js \
form/ACMEPluginSelector.js \
diff --git a/www/manager6/form/FilteredKVComboBox.js b/www/manager6/form/FilteredKVComboBox.js
new file mode 100644
index 00000000..0e24a79f
--- /dev/null
+++ b/www/manager6/form/FilteredKVComboBox.js
@@ -0,0 +1,67 @@
+Ext.define('PVE.form.FilteredKVComboBox', {
+ extend: 'Proxmox.form.KVComboBox',
+ alias: ['widget.pveFilteredKVComboBox'],
+
+ // sam as in the KVComboBox
+ comboItems: undefined,
+
+ // contains the allowed keys per category, e.g.
+ // {
+ // category1: ['foo', 'bar'],
+ // cateogry2: ['foo'],'
+ // }
+ //
+ // to have an effect, the listed values must exist in the comboItems list
+ allowedValuesPerCategory: {},
+
+ // the current category. If not set, the store is not filtered.
+ category: undefined,
+
+ // If set, will be used to update the display value of the '__default__' value
+ // that is usually set in a KVComboBox.
+ //
+ // gets the current category (if any) as parameter)
+ setDefaultDisplay: undefined,
+
+ setCategory: function (category) {
+ let me = this;
+ me.category = category;
+ me.filterByCategory(category);
+ },
+
+ filterByCategory: function (category) {
+ let me = this;
+ let wasValid = me.isValid();
+ me.store.clearFilter();
+
+ let allowedKeys = me.allowedValuesPerCategory[category];
+ if (allowedKeys) {
+ me.store.addFilter((rec) => allowedKeys.indexOf(rec.data.key) !== -1);
+ }
+
+ let isValid = me.isValid();
+ // update default value with new arch
+ if (Ext.isFunction(me.setDefaultDisplay)) {
+ let record = me.store.findRecord('key', '__default__');
+ if (record) {
+ record.set('value', me.setDefaultDisplay(category));
+ record.commit();
+ }
+ }
+
+ // for some reason, adding/changing filters does not trigger this, even though
+ // it show the field as invalid, so simply track and fire the event manually.
+ if (wasValid !== isValid) {
+ me.fireEvent('validitychange', isValid);
+ }
+ },
+
+ initComponent: function () {
+ var me = this;
+
+ me.callParent();
+
+ // initial filtering
+ me.setCategory(me.category);
+ },
+});
--
2.47.3
next prev parent reply other threads:[~2026-02-03 10:21 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-02-03 10:00 [PATCH manager v2 00/17] enable qemu vm architecture selection Dominik Csapak
2026-02-03 10:00 ` [PATCH manager v2 01/17] api/pvestatd: broadcast and expose non-x86 host architecture Dominik Csapak
2026-02-03 13:56 ` Thomas Lamprecht
2026-02-03 15:07 ` Thomas Lamprecht
2026-02-03 10:00 ` [PATCH manager v2 02/17] ui: qemu: wizard: refactor ostype and cd selector into an OSPanel Dominik Csapak
2026-02-03 10:00 ` Dominik Csapak [this message]
2026-02-03 10:00 ` [PATCH manager v2 04/17] ui: resource store: add architecture field Dominik Csapak
2026-02-03 10:00 ` [PATCH manager v2 05/17] ui: qemu: add architecture specific defaults and helpers Dominik Csapak
2026-02-03 10:00 ` [PATCH manager v2 06/17] ui: qemu: add architecture field in wizard and hardware view Dominik Csapak
2026-02-03 10:00 ` [PATCH manager v2 07/17] ui: qemu: make scsi hw selector architecture aware Dominik Csapak
2026-02-03 10:00 ` [PATCH manager v2 08/17] ui: qemu: make osdefaults " Dominik Csapak
2026-02-03 10:00 ` [PATCH manager v2 09/17] ui: qemu: make os type selector " Dominik Csapak
2026-02-03 10:00 ` [PATCH manager v2 10/17] ui: qemu: make machine panels/fields " Dominik Csapak
2026-02-03 10:00 ` [PATCH manager v2 11/17] ui: qemu: make bios selector " Dominik Csapak
2026-02-03 10:00 ` [PATCH manager v2 12/17] ui: qemu: make sortByPreviousUsage " Dominik Csapak
2026-02-03 10:00 ` [PATCH manager v2 13/17] ui: qemu: wizard: use defaults to populate machine and bios Dominik Csapak
2026-02-03 10:00 ` [PATCH manager v2 14/17] ui: qemu: wizard: make iso confid architecture specific Dominik Csapak
2026-02-03 10:00 ` [PATCH manager v2 15/17] ui: qemu: make bus selector architecture aware Dominik Csapak
2026-02-03 10:00 ` [PATCH manager v2 16/17] ui: qemu: make processor edit " Dominik Csapak
2026-02-03 10:00 ` [PATCH manager v2 17/17] ui: qemu: change ui default for cpu model Dominik Csapak
2026-02-03 10:56 ` [PATCH manager v2 00/17] enable qemu vm architecture selection Dominik Csapak
2026-02-03 13:34 ` Thomas Lamprecht
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260203102118.1430545-4-d.csapak@proxmox.com \
--to=d.csapak@proxmox.com \
--cc=pve-devel@lists.proxmox.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox