We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
It starts loading and then I can only view one part of the window. It says: this.tempHidden is undefined
The text was updated successfully, but these errors were encountered:
Thanks for report this issue
Sorry, something went wrong.
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); } } });
Awesome, thanks for share :)
No branches or pull requests
It starts loading and then I can only view one part of the window.
It says:
this.tempHidden is undefined
The text was updated successfully, but these errors were encountered: