New to Telerik UI for ASP.NET AJAX? Start a 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:
- The instance of the Gantt control firing the event.
ASP.NET
<telerik:RadGantt RenderMode="Lightweight" runat="server" id="RadGantt1" OnClientLoad="OnClientLoad">
</telerik:RadGantt>
JavaScript
function OnClientLoad(sender) {
var gantt = sender;
}