ui: tape: add missing monStoreErrors calls for the grids
Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
parent
78593b5b5c
commit
bec357e2cb
|
@ -49,6 +49,10 @@ Ext.define('PBS.TapeManagement.ChangerPanel', {
|
|||
startStore: function() {
|
||||
this.getView().getStore().rstore.startUpdate();
|
||||
},
|
||||
|
||||
init: function(view) {
|
||||
Proxmox.Utils.monStoreErrors(view, view.getStore().rstore);
|
||||
},
|
||||
},
|
||||
|
||||
listeners: {
|
||||
|
|
|
@ -94,6 +94,10 @@ Ext.define('PBS.TapeManagement.DrivePanel', {
|
|||
startStore: function() {
|
||||
this.getView().getStore().rstore.startUpdate();
|
||||
},
|
||||
|
||||
init: function(view) {
|
||||
Proxmox.Utils.monStoreErrors(view, view.getStore().rstore);
|
||||
},
|
||||
},
|
||||
|
||||
listeners: {
|
||||
|
|
|
@ -68,6 +68,10 @@ Ext.define('PBS.TapeManagement.EncryptionPanel', {
|
|||
startStore: function() {
|
||||
this.getView().getStore().rstore.startUpdate();
|
||||
},
|
||||
|
||||
init: function(view) {
|
||||
Proxmox.Utils.monStoreErrors(view, view.getStore().rstore);
|
||||
},
|
||||
},
|
||||
|
||||
listeners: {
|
||||
|
|
|
@ -58,6 +58,10 @@ Ext.define('PBS.TapeManagement.PoolPanel', {
|
|||
startStore: function() {
|
||||
this.getView().getStore().rstore.startUpdate();
|
||||
},
|
||||
|
||||
init: function(view) {
|
||||
Proxmox.Utils.monStoreErrors(view, view.getStore().rstore);
|
||||
},
|
||||
},
|
||||
|
||||
listeners: {
|
||||
|
|
|
@ -160,6 +160,10 @@ Ext.define('PBS.TapeManagement.TapeInventory', {
|
|||
params: { 'update-status': true },
|
||||
});
|
||||
},
|
||||
|
||||
init: function(view) {
|
||||
Proxmox.Utils.monStoreErrors(view, view.getStore());
|
||||
},
|
||||
},
|
||||
|
||||
listeners: {
|
||||
|
|
Loading…
Reference in New Issue