* [pbs-devel] [PATCH proxmox-backup] ui: tape/ChangerStatus: add Format button to drivegrid
@ 2021-04-14 10:34 Dominik Csapak
0 siblings, 0 replies; only message in thread
From: Dominik Csapak @ 2021-04-14 10:34 UTC (permalink / raw)
To: pbs-devel
so that the user can also format an already inserted tape directly
Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
---
www/tape/ChangerStatus.js | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/www/tape/ChangerStatus.js b/www/tape/ChangerStatus.js
index 8983c2aa..e5d143fe 100644
--- a/www/tape/ChangerStatus.js
+++ b/www/tape/ChangerStatus.js
@@ -138,6 +138,24 @@ Ext.define('PBS.TapeManagement.ChangerStatus', {
});
},
+ 'format-inserted': function(button, event, record) {
+ let me = this;
+
+ let view = me.getView();
+ PBS.Utils.driveCommand(record.data.name, 'format-media', {
+ waitMsgTarget: view,
+ method: 'POST',
+ success: function(response) {
+ Ext.create('Proxmox.window.TaskProgress', {
+ upid: response.result.data,
+ taskDone: function() {
+ me.reload();
+ },
+ }).show();
+ },
+ });
+ },
+
format: function(v, rI, cI, button, el, record) {
let me = this;
let view = me.getView();
@@ -753,6 +771,17 @@ Ext.define('PBS.TapeManagement.ChangerStatus', {
disabled: true,
enableFn: (rec) => rec.data["label-text"] !== undefined,
},
+ {
+ text: gettext('Format'),
+ xtype: 'proxmoxButton',
+ handler: 'format-inserted',
+ iconCls: 'fa fa-trash-o',
+ disabled: true,
+ enableFn: (rec) => rec.data["label-text"] !== undefined,
+ dangerous: true,
+ confirmMsg: gettext('Are you sure you want to format the inserted tape?'),
+ },
+ '-',
{
text: gettext('Clean Drive'),
xtype: 'proxmoxButton',
--
2.20.1
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2021-04-14 10:34 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-14 10:34 [pbs-devel] [PATCH proxmox-backup] ui: tape/ChangerStatus: add Format button to drivegrid Dominik Csapak
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.
Service provided by Proxmox Server Solutions GmbH | Privacy | Legal