I just installed 2.0 RC 2, and get a javascript error in IE, "object doesn't support the property or method", and then the editor doesn't load. In the IE JS debugger, it highlighed the following section, but I wasn't able to figure out what to change to avoid the error.
oForm.submit=function(){
if (this.updateFCKEditor){
for (var i=0;i<this.updateFCKEditor.length;i++)
this.updateFCKEditor[i]();
};
this.originalSubmit();
I do have an onsubmit="return formvalid(this);" attribute on my form tag, but taking this out didn't change anything. Suggestions?
oForm.submit=function(){
if (this.updateFCKEditor){
for (var i=0;i<this.updateFCKEditor.length;i++)
this.updateFCKEditor[i]();
};
this.originalSubmit();
I do have an onsubmit="return formvalid(this);" attribute on my form tag, but taking this out didn't change anything. Suggestions?
RE: submit function error
I had the same error in the same place, but when I looked at the sample files it worked fine. I was using 2 submit buttons for my form (the server would take action on the value of $submit) and when I removed one of them the error disappeared.

Now I get to do a workaround for my other submit button
RE: submit function error