Commit cb71474e authored by Dietmar Maurer's avatar Dietmar Maurer

TaskProgress: add button to show details (TaskViewer)

parent 99bbe3a9
......@@ -55,7 +55,19 @@ Ext.define('PVE.window.TaskProgress', {
layout: 'auto',
modal: true,
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();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment