I have a user control that contains a rad grid that seems to be working great except after update.
In the user control, I register an javascript call on the updatecommand:
(Page.Master.FindControl("RadAjaxMasterManager1") as Telerik.Web.UI.RadAjaxManager).ResponseScripts.Add(statusScript);
The script calls a javascript function that does this:
var ajaxMgr = $find("<%=RadAjaxManager.GetCurrent(Page).ClientID %>");
ajaxMgr.ajaxRequest("ToDoRefreshAjax");
stepping through the code, the RaisePostBackEvent that I use to handle this runs correctly. However when its all done running i get this javascript error:
Uncaught Sys.ArgumentNullException: Sys.ArgumentNullException: Value cannot be null.
Parameter name: id
Parameter name: id
ScriptResource.axd:3098
and then all ajax calls stop working after this error
What is causing this error?