DrZog
23 Jul 2007, 2:30 AM
Is there any reason why the test snipet below should work in FF but fail in IE7 with "Unknown exception"?
register = function() {
return {
init:function(){
var el = Ext.get("email_reg");
var mgr = el.getUpdateManager();
mgr.update("php_checkemail.php", "email="+el.getValue());
}
}
}();
Ext.onReady(register.init, register, true);
Have tried both ext-1.0.1a and ext-1.1-rc1
register = function() {
return {
init:function(){
var el = Ext.get("email_reg");
var mgr = el.getUpdateManager();
mgr.update("php_checkemail.php", "email="+el.getValue());
}
}
}();
Ext.onReady(register.init, register, true);
Have tried both ext-1.0.1a and ext-1.1-rc1