skyey
28 Jun 2007, 9:13 AM
Ext.onReady(function(){
Ext.get('mb1').on('click',test);
function test(e){
var bl=false;
Ext.MessageBox.confirm('Confirm', 'Are you sure you want to do that?',function(btn){
if(btn=='yes'){
bl = true;
}
});
if(!bl){// bl always = false, i didn't want to prevent event when click ok button.
e.preventDefault();
alert('aa');
}
}
});
Ext.get('mb1').on('click',test);
function test(e){
var bl=false;
Ext.MessageBox.confirm('Confirm', 'Are you sure you want to do that?',function(btn){
if(btn=='yes'){
bl = true;
}
});
if(!bl){// bl always = false, i didn't want to prevent event when click ok button.
e.preventDefault();
alert('aa');
}
}
});