loi.vo
23 Aug 2011, 3:11 PM
Hi,
I'm new to ExtJS. I did a simple Ext.MessageBox.show call. When the user click on a link, I popup this confirmation save changes dialog:
Ext.MessageBox.show( {
title: 'confirmation',
msg: 'Your changes have not been applied, do you want to continue',
buttons: Ext.MessageBox.OKCANCEL,
icon: Ext.MessageBox.QUESTION,
height: 200,
animCollapse: false,
fn: function(btn) {
if (btn == 'ok') {
processOk();
} else {
return false;
}
},
});
function processOk() { }
However, when the confirmation dialog popups, Firefox keeps showing the following errors:
propHandler.get is not a fucntion. (ext-all-debug.js line 35812)
Worse yet, after I click on 'ok' or 'cancel' button to close the dialog, this error message keeps being generated. It looks like there is a background task running to keep looping. What is wrong?
Thanks,
I'm new to ExtJS. I did a simple Ext.MessageBox.show call. When the user click on a link, I popup this confirmation save changes dialog:
Ext.MessageBox.show( {
title: 'confirmation',
msg: 'Your changes have not been applied, do you want to continue',
buttons: Ext.MessageBox.OKCANCEL,
icon: Ext.MessageBox.QUESTION,
height: 200,
animCollapse: false,
fn: function(btn) {
if (btn == 'ok') {
processOk();
} else {
return false;
}
},
});
function processOk() { }
However, when the confirmation dialog popups, Firefox keeps showing the following errors:
propHandler.get is not a fucntion. (ext-all-debug.js line 35812)
Worse yet, after I click on 'ok' or 'cancel' button to close the dialog, this error message keeps being generated. It looks like there is a background task running to keep looping. What is wrong?
Thanks,