mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-07-27 09:59:33 +00:00
TaskProgress: add button to show details (TaskViewer)
This commit is contained in:
parent
a3096bbd70
commit
56e237fc9d
@ -55,7 +55,19 @@ Ext.define('PVE.window.TaskProgress', {
|
|||||||
layout: 'auto',
|
layout: 'auto',
|
||||||
modal: true,
|
modal: true,
|
||||||
bodyPadding: 5,
|
bodyPadding: 5,
|
||||||
items: pbar
|
items: pbar,
|
||||||
|
buttons: [
|
||||||
|
{
|
||||||
|
text: gettext('Details'),
|
||||||
|
handler: function() {
|
||||||
|
var win = Ext.create('PVE.window.TaskViewer', {
|
||||||
|
upid: me.upid
|
||||||
|
});
|
||||||
|
win.show();
|
||||||
|
me.close();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
});
|
});
|
||||||
|
|
||||||
me.callParent();
|
me.callParent();
|
||||||
|
Loading…
Reference in New Issue
Block a user