1. #1
    Sencha User
    Join Date
    Feb 2012
    Posts
    13
    Vote Rating
    0
    warkesm is on a distinguished road

      0  

    Default Unanswered: Ext.Msg.confirm (hideOnMaskTap)

    Unanswered: Ext.Msg.confirm (hideOnMaskTap)


    Could you please help me to prevent "Ext.Msg.confirm" window to be disappeared while clicking outside area.
    How can I config hideOnMaskTap: false?
    Where can I write this while creating following confirmation window?
    Following code is used in one simple java script function.

    Code:
    Ext.Msg.confirm('Title', 'The file you are going to download is '+record.get('size')+' B, are you sure you want to continue?', function(answer){if(answer=='yes')
    {
    alert('Go Ahead');
    }, 
    function(error)
    {
        alert(error);
    });

  2. #2
    Sencha - Senior Forum Manager mitchellsimoens's Avatar
    Join Date
    Mar 2007
    Location
    St. Louis, MO
    Posts
    33,624
    Vote Rating
    434
    Answers
    3105
    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


    You need to use setHideOnMaskTap(true) on Ext.Msg
    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
    Feb 2012
    Posts
    13
    Vote Rating
    0
    warkesm is on a distinguished road

      0  

    Default


    Hey Thanks Mitchell,

    But I don't want to allow the confirmation message window to be hidden by tapping outside area which I achieved by taking this confirmation message box in a variable and then using methods of Ext.Msg as follow
    var confirmDownload = Ext.Msg.confirm('Title', 'The file you are going to download is '+record.get('size')+' B, are you sure you want to continue?', function(answer){if(answer=='yes'){
    alert('Go Ahead');
    },
    function(error)
    {
    alert(error);
    });
    confirmDownload.setHideOnMaskTap(false);
    confirmDownload.show();
    In this way user has to select any one of the options 'Yes' or 'No' to proceed that's what the requirement was.