From 66a38a6afac785d6b36168f79d3726e655e3930b Mon Sep 17 00:00:00 2001 From: Dominik Csapak Date: Mon, 6 Mar 2023 15:23:29 +0100 Subject: [PATCH] ui: guest selector: make the shown picker columns customizable We will reuse this component in other place, which might not always want to show all columns Signed-off-by: Dominik Csapak Signed-off-by: Thomas Lamprecht --- www/manager6/form/VMSelector.js | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/www/manager6/form/VMSelector.js b/www/manager6/form/VMSelector.js index 78cd9013..d80a21ec 100644 --- a/www/manager6/form/VMSelector.js +++ b/www/manager6/form/VMSelector.js @@ -22,7 +22,8 @@ Ext.define('PVE.form.VMSelector', { value: /lxc|qemu/, }], }, - columns: [ + + columnsDeclaration: [ { header: 'ID', dataIndex: 'vmid', @@ -94,6 +95,9 @@ Ext.define('PVE.form.VMSelector', { }, ], + // should be a list of 'dataIndex' values, if 'undefined' all declared columns will be included + columnSelection: undefined, + selModel: { selType: 'checkboxmodel', mode: 'SIMPLE', @@ -155,6 +159,12 @@ Ext.define('PVE.form.VMSelector', { initComponent: function() { let me = this; + let columns = me.columnsDeclaration.filter((column) => + me.columnSelection ? me.columnSelection.indexOf(column.dataIndex) !== -1 : true, + ).map((x) => x); + + me.columns = columns; + me.callParent(); if (me.nodename) {