ui: make Sync/VerifyView and Edit usable without datastore
we want to use this panel again for a 'global' overview, without any datastore preselected, so we have to handle that, and adding a datastore selector in the editwindow Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
committed by
Thomas Lamprecht
parent
616650a198
commit
ab81bb13ad
@ -162,9 +162,11 @@ Ext.define('PBS.config.SyncJobView', {
|
||||
reload: function() { this.getView().getStore().rstore.load(); },
|
||||
|
||||
init: function(view) {
|
||||
view.getStore().rstore.getProxy().setExtraParams({
|
||||
store: view.datastore,
|
||||
});
|
||||
let params = {};
|
||||
if (view.datastore !== undefined) {
|
||||
params.store = view.datastore;
|
||||
}
|
||||
view.getStore().rstore.getProxy().setExtraParams(params);
|
||||
Proxmox.Utils.monStoreErrors(view, view.getStore().rstore);
|
||||
},
|
||||
},
|
||||
|
@ -157,9 +157,11 @@ Ext.define('PBS.config.VerifyJobView', {
|
||||
reload: function() { this.getView().getStore().rstore.load(); },
|
||||
|
||||
init: function(view) {
|
||||
view.getStore().rstore.getProxy().setExtraParams({
|
||||
store: view.datastore,
|
||||
});
|
||||
let params = {};
|
||||
if (view.datastore !== undefined) {
|
||||
params.store = view.datastore;
|
||||
}
|
||||
view.getStore().rstore.getProxy().setExtraParams(params);
|
||||
Proxmox.Utils.monStoreErrors(view, view.getStore().rstore);
|
||||
},
|
||||
},
|
||||
|
Reference in New Issue
Block a user