We use the RAD Editor for AJAX, and we are getting a javascript error 'undefined' is null or not an object in IE8. I have included the supposed location of the error below and some surrounding code, which is coming from ScriptResource.axd. The script is failing at the line "_71e=_71e.replace(/<body\s*\/>/i,"<body></body>");". The version of our Telerik.Web.UI.dll is 2008.02.1001.35. This error doesn't seem to occur in IE7 or in Firefox. Any clues? Would a version update take care of this problem? It doesn't seem to be causing any issues, but is an annoyance for one of our clients.
| var _71e; |
| if(this.get_enableXhtmlFilter()){ |
| try{ |
| _71e=this._convertToXhtmlFilter.getHtmlContent(_71b); |
| } |
| catch(exc){ |
| alert("Error while executing filter XHTML - "+exc.toString()); |
| } |
| }else{ |
| _71e=$telerik.getOuterHtml(_71b); |
| } |
| _71e=_71e.replace(/<body\s*\/>/i,"<body></body>"); |
| for(var i=0;i<this._filters.length;i++){ |
| var _71d=this._filters[i]; |
| if((!_71d.get_isDom())&&(false!=_71d.get_enabled())&&_71d.getHtmlContent){ |
| try{ |
| _71e=_71d.getHtmlContent(_71e); |
| } |