I am getting the following error:
Microsoft JScript runtime error: Sys.WebForms.PageRequestManagerServerErrorException: Script control 'grWFSteps' is not a registered script control. Script controls must be registered using RegisterScriptControl() before calling RegisterScriptDescriptors().
Parameter name: scriptControl
My page layout is as follows
Master page that has AJAXMANAGER
Page derived from the Master page has a user control say UC1
User control UC1 has a radgrid RADGRID1
User control UC1 has a AJAXMANAGERPROXY where trigger and updated control are RADGrid1
RadGrid1 can be updated using another user control UC2
Now in UC2, there is another user control UC3
UC3 has an AJAXManagerProxy where some controls in UC3 update other controls in UC3
When the trigger in UC3 is initiated I get the error above.
My question is that the controls are already registered with the AJAXManagerProxy in UC3 as shown below. Where else do they need to be registered?
Microsoft JScript runtime error: Sys.WebForms.PageRequestManagerServerErrorException: Script control 'grWFSteps' is not a registered script control. Script controls must be registered using RegisterScriptControl() before calling RegisterScriptDescriptors().
Parameter name: scriptControl
My page layout is as follows
Master page that has AJAXMANAGER
Page derived from the Master page has a user control say UC1
User control UC1 has a radgrid RADGRID1
User control UC1 has a AJAXMANAGERPROXY where trigger and updated control are RADGrid1
RadGrid1 can be updated using another user control UC2
Now in UC2, there is another user control UC3
UC3 has an AJAXManagerProxy where some controls in UC3 update other controls in UC3
When the trigger in UC3 is initiated I get the error above.
My question is that the controls are already registered with the AJAXManagerProxy in UC3 as shown below. Where else do they need to be registered?
<
telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanelWF" runat="server" />
<
telerik:RadAjaxManagerProxy ID="AjaxManagerProxyWF" runat="server">
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="grWFSteps">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="grWFSteps" LoadingPanelID="RadAjaxLoadingPanelWF" />
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</
telerik:RadAjaxManagerProxy>