Hello Chintoo Semi, 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:
We use cookies to ensure you have the best browsing experience on our website. By using our site, you
acknowledge that you have read and understood our
Cookie Policy &
Privacy Policy
Join MindStick Community
You have need login or register for voting of answers or question.
Anonymous User
05-Aug-2013First 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 !!