New to Telerik UI for ASP.NET AJAX? Download free 30-day trial

Load

The client-side Load event is raised when the RadClientExportManager client-side object is fully loaded (the full API of the control is available at this point).

To handle this event, simply write a JavaScript function that can be called when the event occurs. Then assign the name of this function as the value of the OnLoad property.

The client-side OnLoad event handler receives one argument:

Example 1: Handle the RadClientExportManager's client-side Load event.


<telerik:RadClientExportManager runat="server" id="RadClientExportManager1" onclientload="OnClientLoad">
    <PdfSettings FileName="MyFile.pdf" MarginBottom="20mm" />
</telerik:RadClientExportManager>



<script type="text/javascript">
    var clientExportManager;
    function OnClientLoad(sender) {
        clientExportManager = sender;
    }
</script>

See Also

In this article