1. #1
    Sencha User
    Join Date
    Oct 2011
    Location
    Noida, India
    Posts
    78
    Vote Rating
    0
    Answers
    2
    jiindal1988 is on a distinguished road

      0  

    Default 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.

  2. #2
    Sencha - Senior Forum Manager mitchellsimoens's Avatar
    Join Date
    Mar 2007
    Location
    St. Louis, MO
    Posts
    33,656
    Vote Rating
    435
    Answers
    3108
    mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of

      0  

    Default


    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.

  3. #3
    Sencha User
    Join Date
    Oct 2011
    Location
    Noida, India
    Posts
    78
    Vote Rating
    0
    Answers
    2
    jiindal1988 is on a distinguished road

      0  

    Default


    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
    }

  4. #4
    Sencha - Senior Forum Manager mitchellsimoens's Avatar
    Join Date
    Mar 2007
    Location
    St. Louis, MO
    Posts
    33,656
    Vote Rating
    435
    Answers
    3108
    mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of

      0  

    Default


    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.