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() {
|
startStore: function() {
|
||||||
this.getView().getStore().rstore.startUpdate();
|
this.getView().getStore().rstore.startUpdate();
|
||||||
},
|
},
|
||||||
|
|
||||||
|
init: function(view) {
|
||||||
|
Proxmox.Utils.monStoreErrors(view, view.getStore().rstore);
|
||||||
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
listeners: {
|
listeners: {
|
||||||
|
|
|
@ -94,6 +94,10 @@ Ext.define('PBS.TapeManagement.DrivePanel', {
|
||||||
startStore: function() {
|
startStore: function() {
|
||||||
this.getView().getStore().rstore.startUpdate();
|
this.getView().getStore().rstore.startUpdate();
|
||||||
},
|
},
|
||||||
|
|
||||||
|
init: function(view) {
|
||||||
|
Proxmox.Utils.monStoreErrors(view, view.getStore().rstore);
|
||||||
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
listeners: {
|
listeners: {
|
||||||
|
|
|
@ -68,6 +68,10 @@ Ext.define('PBS.TapeManagement.EncryptionPanel', {
|
||||||
startStore: function() {
|
startStore: function() {
|
||||||
this.getView().getStore().rstore.startUpdate();
|
this.getView().getStore().rstore.startUpdate();
|
||||||
},
|
},
|
||||||
|
|
||||||
|
init: function(view) {
|
||||||
|
Proxmox.Utils.monStoreErrors(view, view.getStore().rstore);
|
||||||
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
listeners: {
|
listeners: {
|
||||||
|
|
|
@ -58,6 +58,10 @@ Ext.define('PBS.TapeManagement.PoolPanel', {
|
||||||
startStore: function() {
|
startStore: function() {
|
||||||
this.getView().getStore().rstore.startUpdate();
|
this.getView().getStore().rstore.startUpdate();
|
||||||
},
|
},
|
||||||
|
|
||||||
|
init: function(view) {
|
||||||
|
Proxmox.Utils.monStoreErrors(view, view.getStore().rstore);
|
||||||
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
listeners: {
|
listeners: {
|
||||||
|
|
|
@ -160,6 +160,10 @@ Ext.define('PBS.TapeManagement.TapeInventory', {
|
||||||
params: { 'update-status': true },
|
params: { 'update-status': true },
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
|
init: function(view) {
|
||||||
|
Proxmox.Utils.monStoreErrors(view, view.getStore());
|
||||||
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
listeners: {
|
listeners: {
|
||||||
|
|
Loading…
Reference in New Issue