-
12 Dec 2011 3:59 AM #1
Unanswered: Close overlay on orientation change
Unanswered: Close overlay on orientation change
Hello, In my application I have opened a overlay on click of a button.
I have one cancel button on the toolbar docked top on overlay. On click of that button, overlay gets closed.
Now, I want overlay to be closed automatically on change of orientation, but I am getting error in sencha-touch.js.
Code used for the same is:
new Ext.Panel({
fullscreen: true,
layout: 'fit',
items:Channelgrid,
style : 'z-index: 1000',
monitorOrientation: true,
onOrientationChange: function(){
if(PopUpFlag)
{
overlay.hide();
}
},
....................
I cannot understand the problem.
Is there any way I can achieve this or I can disable orientation change if overlay is opened??
Any help is appreciated.
-
12 Dec 2011 9:07 AM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,684
- Vote Rating
- 435
- Answers
- 3111
What error are you getting?
Mitchell Simoens @SenchaMitch
Sencha Inc, Senior Forum Manager
________________
http://www.JSONPLint.com - Source to lint your JSONP!
Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
https://github.com/mitchellsimoens
Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/
Need more help with your app? Hire Sencha Services services@sencha.com
Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!
When posting code, please use BBCode's CODE tags.
-
12 Dec 2011 8:57 PM #3
f.dom 'undefined' is not an object.
To resolve the same, I have added a condition in sencha-touch.js for f.dom.
for e.g:
if(f.dom)
{
// original code
}
-
13 Dec 2011 6:34 AM #4Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,684
- Vote Rating
- 435
- Answers
- 3111
That's not really helpful... you need to use sencha-touch-debug.js for development and then in production switch to sencha-touch.js.
Mitchell Simoens @SenchaMitch
Sencha Inc, Senior Forum Manager
________________
http://www.JSONPLint.com - Source to lint your JSONP!
Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
https://github.com/mitchellsimoens
Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/
Need more help with your app? Hire Sencha Services services@sencha.com
Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!
When posting code, please use BBCode's CODE tags.


Reply With Quote