When I spell-check a form that contains 2 or more controls as defined in the ControlsToCheckProperty, I get the following error message in the browser:
Microsoft JScript runtime error: Object required
I enabled the debugger within my markup and I was able to identify where the error ocurs within the ScriptResource.axd
if(this.get_element().value!=null){
try{
_21=this.get_element().value;
}
In this case, the this.get_element() is returning a null reference but the code still gets its value property.
Since the script is rendered by the HttpHandler, there is no way for me to add an additional check on the script.
The whole context is as this. An aspx page that already contained MS Ajax Extensions with a ScriptManager and an UpdatePanel. Changing this to the Telerik versions is not an option. It would require thousands of hours of regression testing from our QA team.
Need help!