so they can be used and specified in derived classes.

Signed-off-by: Fabian Ebner <[email protected]>
---
 www/manager6/storage/ContentView.js | 25 +++++++++++++++++--------
 1 file changed, 17 insertions(+), 8 deletions(-)

diff --git a/www/manager6/storage/ContentView.js 
b/www/manager6/storage/ContentView.js
index 1218f65c..6e7ae630 100644
--- a/www/manager6/storage/ContentView.js
+++ b/www/manager6/storage/ContentView.js
@@ -375,15 +375,21 @@ Ext.define('PVE.storage.ContentView', {
     initComponent : function() {
        var me = this;
 
-       var nodename = me.pveSelNode.data.node;
-       if (!nodename) {
-           throw "no node name specified";
+       if (!me.nodename) {
+           me.nodename = me.pveSelNode.data.node;
+           if (!me.nodename) {
+               throw "no node name specified";
+           }
        }
+       var nodename = me.nodename;
 
-       var storage = me.pveSelNode.data.storage;
-       if (!storage) {
-           throw "no storage ID specified";
+       if (!me.storage) {
+           me.storage = me.pveSelNode.data.storage;
+           if (!me.storage) {
+               throw "no storage ID specified";
+           }
        }
+       var storage = me.storage;
 
        var content = me.content;
        if (!content) {
@@ -391,7 +397,7 @@ Ext.define('PVE.storage.ContentView', {
        }
 
        var baseurl = "/nodes/" + nodename + "/storage/" + storage + "/content";
-       var store = Ext.create('Ext.data.Store',{
+       var store = me.store = Ext.create('Ext.data.Store', {
            model: 'pve-storage-content',
            proxy: {
                 type: 'proxmox',
@@ -406,7 +412,10 @@ Ext.define('PVE.storage.ContentView', {
            }
        });
 
-       var sm = Ext.create('Ext.selection.RowModel', {});
+       if (!me.sm) {
+           me.sm = Ext.create('Ext.selection.RowModel', {});
+       }
+       var sm = me.sm;
 
        var reload = function() {
            store.load();
-- 
2.20.1



_______________________________________________
pve-devel mailing list
[email protected]
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

Reply via email to