How to use the ext/panels/panels.unregister function in ext

To help you get started, we’ve selected a few ext examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github pylonide / pylon / plugins-client / ext.testpanel / testpanel.js View on Github external
destroy : function(){
        this.stop();
        panels.unregister(this);
        this.$destroy();
    }
});
github pylonide / pylon / plugins-client / ext.openfiles / openfiles.js View on Github external
destroy : function(){
        commands.removeCommandByName("openfilepanel");
        
        this.nodes.each(function(item){
            item.destroy(true, true);
        });
        this.nodes = [];
        
        panels.unregister(this);
    },
});
github pylonide / pylon / plugins-client / ext.tree / tree.js View on Github external
destroy : function(){
        commands.removeCommandByName("opentreepanel");
        panels.unregister(this);
        this.$destroy();
    }
});
github pylonide / pylon / plugins-client / ext.settings / settings.js View on Github external
destroy : function(){
        commands.removeCommandByName("opensettingspanel");
        panels.unregister(this);
        this.$destroy();
    }
});
github pylonide / pylon / client / ext / tree / tree_editor.js View on Github external
destroy : function(){
        this.hbox.destroy(true, true);
        //this.splitter.destroy(true, true);
        panels.unregister(this);
    }
});
github pylonide / pylon / plugins-client / ext.runpanel / runpanel.js View on Github external
destroy : function(){
        commands.removeCommandsByName(["run", "stop"]);
        panels.unregister(this);
        this.$destroy();
    }
});
github pylonide / pylon / plugins-client / ext.settings / settings.js View on Github external
destroy : function(){
        commands.removeCommandByName("opensettingspanel");
        
        this.nodes.each(function(item){
            item.destroy(true, true);
        });
        this.nodes = [];
        
        panels.unregister(this);
    }
});
github pylonide / pylon / client / ext / docs / docs.js View on Github external
destroy : function(){
        winDocViewer.destroy(true, true);
        panels.unregister(this);
    }
});
github pylonide / pylon / client / ext / runpanel / runpanel.js View on Github external
destroy : function(){
        this.nodes.each(function(item){
            item.destroy(true, true);
        });
        this.nodes = [];
        
        panels.unregister(this);
    }
});
github pylonide / pylon / plugins-client / ext.openfiles / openfiles.js View on Github external
destroy : function(){
        commands.removeCommandByName("openfilepanel");

        this.nodes.each(function(item){
            item.destroy(true, true);
        });
        this.nodes = [];

        panels.unregister(this);
    },
});