Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Users, Roles window do not load #9

Open
sagikazarmark opened this issue Nov 28, 2011 · 3 comments
Open

Users, Roles window do not load #9

sagikazarmark opened this issue Nov 28, 2011 · 3 comments

Comments

@sagikazarmark
Copy link

It starts loading and then I can only view one part of the window.
It says:
this.tempHidden is undefined

@crysfel
Copy link
Owner

crysfel commented Nov 29, 2011

Thanks for report this issue

@larnold
Copy link

larnold commented Jan 22, 2012

I found the fix for this issue here:

http://www.sencha.com/forum/showthread.php?160222-quot-this.tempHidden-is-undefined-quot-Error-Workaround

I pasted this into top of file: js\Bleext\core\Ajax.js (not sure if this is the correct place but seems to work).

Ext.override(Ext.ZIndexManager, { 

    tempHidden: [], 

    show: function() { 
        var comp, x, y; 

        while (comp = this.tempHidden.shift()) { 

            x = comp.x; 
            y = comp.y; 

            comp.show(); 
            comp.setPosition(x, y); 

        } 

    } 

});  

@crysfel
Copy link
Owner

crysfel commented Feb 10, 2012

Awesome, thanks for share :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants