Your help is a great appreciated.
confirmation msg box in sencha touch
Ask by Anonymous User
Updated 05 Aug 2013
First of all, I would like to correct one thing in your question, There is nothing like Confirmation Alert Message Box in Sencha Touch. Sencha Touch provides Prompt Message box, Confirmation Message Box and Alert Message Box. You can use these message as per your requirement.
Here the code is:
Prompt Message Box:
Ext.Msg.prompt('MessageBotitle','Enter screen name',
function(btn, text){
if(btn == 'ok'){
}
}
});
Confirmation Message Box:
Ext.Msg.confirm("Confirmation", "Are you sure you want to send this info?", function(btn){if (btn === 'yes'){
}
});
Alert Message Box:
Ext.Msg.alert('MessageBoTitle','This is alert message box');
Please check out the following link for more details on Sencha Touch Messages Box:
http://dev.sencha.com/deploy/ext-4.0.1/examples/message-box/msg-box.html
I hope it might be helpful for you. Thanks !!