-
29 Mar 2012 5:55 AM #1
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); });
-
29 Mar 2012 6:10 AM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,624
- Vote Rating
- 434
- Answers
- 3105
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.
-
29 Mar 2012 6:49 AM #3
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
In this way user has to select any one of the options 'Yes' or 'No' to proceed that's what the requirement was.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();


Reply With Quote