[pve-devel] [PATCH manager 06/10] ui: qemu/HDEdit: fire an event when the disk id changes
Dominik Csapak
d.csapak at proxmox.com
Mon Sep 20 14:23:34 CEST 2021
e.g. from scsi0 to scsi1 or from scsi0 to virtio0
Signed-off-by: Dominik Csapak <d.csapak at proxmox.com>
---
www/manager6/qemu/HDEdit.js | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/www/manager6/qemu/HDEdit.js b/www/manager6/qemu/HDEdit.js
index bbd4a2c6..2142c746 100644
--- a/www/manager6/qemu/HDEdit.js
+++ b/www/manager6/qemu/HDEdit.js
@@ -33,6 +33,13 @@ Ext.define('PVE.qemu.HDInputPanel', {
}
me.lookup('scsiController').setVisible(value.match(/^scsi/));
+
+ me.fireIdChange();
+ },
+
+ fireIdChange: function() {
+ let view = this.getView();
+ view.fireEvent('diskidchange', view, view.bussel.getConfId());
},
control: {
@@ -40,6 +47,9 @@ Ext.define('PVE.qemu.HDInputPanel', {
change: 'onControllerChange',
afterrender: 'onControllerChange',
},
+ 'field[name=deviceid]': {
+ change: 'fireIdChange',
+ },
'field[name=iothread]': {
change: function(f, value) {
if (!this.getView().insideWizard) {
--
2.30.2
More information about the pve-devel
mailing list