New to Telerik UI for ASP.NET AJAX? Start a free 30-day trial
ResponseEnd event
Updated over 6 months ago
The ResponseEnd client-side event handler is called when a request is received from the server. The event can not be cancelled.
Two parameters are passed to the event handler with the following methods:
-
sender—The instance of the client-sideRadAjaxManager/RadAjaxPanelobject. -
eventArgs—Provides the following methods:-
get_eventTarget()—Gets theUniqueIDof the element that had raised the request. -
get_eventArgument()—Gets the string passed in the initial AJAX request. -
get_eventTargetElement()—Gets the instance of the client-side object that raised the AJAX request.
-
The following example displays the control that initiated the request.
ASP.NET
<script type="text/javascript">
function responseEnd(sender, eventArgs) {
alert('Response end initiated by: ' + eventArgs.get_eventTarget());
}
</script>
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
<ClientEvents OnResponseEnd="responseEnd" />
</telerik:RadAjaxManager>