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

OnLoad

The OnLoad client-side event handler is called when the input control is loaded on the client.

The OnLoad event is supported by all RadInput controls.

Two parameters are passed to the event handler:

  • sender is the input control.

  • eventArgs is an instance of Sys.EventArgs.

The following example uses the OnLoad event to change the background color of a text box:

<telerik:RadTextBox RenderMode="Lightweight" ID="RadTextBox1" runat="server">
    <ClientEvents OnLoad="Load" />
</telerik:RadTextBox>
<script type="text/javascript">
    function Load(sender)
    {
        sender.get_styles().EnabledStyle[0] += "background-color: lemonchiffon;";
        sender.updateCssClass();
    }
</script>
In this article