in the 2011 Q3 documentation that is installed on my local computer during setup, I found what I am pretty sure is a typo for the RadAjaxManagerProxy.
The ASPX code has the following:
I believe that the code in the $find has an error, and should be the following instead:
The difference is that is should be ".GetCurrent(Page).ClientID" instead of ".GetCurrent(PageClientID".
At least that is what works for me.
The ASPX code has the following:
<telerik:RadCodeBlock ID="RadCodeBlock1" runat="server"> <script type="text/javascript"> function myUserControlClickHandler() { $find("<%= RadAjaxManager.GetCurrent(PageClientID %>").ajaxRequest("content"); } </script></telerik:RadCodeBlock>I believe that the code in the $find has an error, and should be the following instead:
$find("<%= RadAjaxManager.GetCurrent(Page).ClientID %>").ajaxRequest("content");The difference is that is should be ".GetCurrent(Page).ClientID" instead of ".GetCurrent(PageClientID".
At least that is what works for me.