Hello David,
Let me note a few points:
1. The RadAjaxManager.AjaxRequest event does not fire when you use the client-side .ajaxRequestWithTarget() method. The AjaxRequest server event fires when you use the
.ajaxRequest() client method. The difference is explained in the
following online help topic. In short, the former method is equivalent to using
__doPostBack(), while the latter is a means of firing AJAX postbacks explicitly through RadAjaxManager.
2. In a master page / content page scenarios, the RadAjaxManager instance should go in the
master page. The content page should have a RadAjaxManagerProxy defined. This is explained in
this online help topic.
3. The AjaxRequest event handler should be attached in whatever page you need the event handler to execute. If this is the master page where you have the RadAjaxManager instance on the page, you use:
If you need to attach the AjaxRequest handler in the content page, however, the RadAjaxManager instance is not directly available in the content page. In this case, you attach the event handler from code-behind as follows:
Veli
the Telerik team