PDA

View Full Version : How to add confirm dialog before deleting docuemnt



orvilletw
14 Dec 2009, 10:31 PM
Dear All

When I click "Delete" button in keyboard,document that I selected in view will be deleted.
How can I add the confirm dialog to remind user before document be deleted?
thanks

cevarief
14 Dec 2009, 11:21 PM
Ext.MessageBox.confirm('Delete', 'Are you sure ?', function(btn){
if(btn === 'yes'){
//some code
}
else{
//some code
}
});


To trap the keyboard key : http://www.extjs.com/blog/2008/09/23/keyboard-handling/