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

OnClientLoad

The OnClientLoad occurs when control's client-side object is initialized as well as the underlying Kendo UI Widget.

The event handler receives one parameter:

  1. The instance of the Gantt control firing the event.
<telerik:RadGantt RenderMode="Lightweight" runat="server" id="RadGantt1" OnClientLoad="OnClientLoad">
</telerik:RadGantt>
function OnClientLoad(sender) {
    var gantt = sender;   
}

See Also

In this article