I have a child of a master page. The master page has a RadAjaxManager. The child page has a RadAjaxManagerProxy.
I have a client side javascript function within a RadCodeBlock:
I have a client side javascript function within a RadCodeBlock:
function AjaxRequestButton(arguments)
{
var ajaxManager = $find(<%= RadAjaxManagerProxy1.ClientID %>);
ajaxManager.AjaxRequestWithTarget(
'<%= Button1.UniqueID %>', '');
}
However calling this function generates a runtime error:
'ctl00_toolbarContent_RadAjaxManagerProxy1' is undefined
I've tried moving the proxy to other contect areas of the child page but to no avail. It seems that the javascript function can't locate the proxy.
Any ideas?