use refresh event instead of datachanged

This commit is contained in:
Dietmar Maurer 2016-09-16 07:36:15 +02:00
parent 203fd3488f
commit 59f2dd3dcf
2 changed files with 2 additions and 2 deletions

View File

@ -278,7 +278,7 @@ Ext.define('PVE.lxc.CreateWizard', {
summarystore.add(data);
summarystore.sort();
summarystore.resumeEvents();
summarystore.fireEvent('datachanged', summarystore);
summarystore.fireEvent('refresh');
}
},
onSubmit: function() {

View File

@ -143,7 +143,7 @@ Ext.define('PVE.qemu.CreateWizard', {
summarystore.add(data);
summarystore.sort();
summarystore.resumeEvents();
summarystore.fireEvent('datachanged', summarystore);
summarystore.fireEvent('refresh');
}
},