New to Telerik UI for ASP.NET AJAX? Start a free 30-day trial
OnLoad
The OnLoad client-side event handler of the ASP NET AJAX Calendar is called when the calendar is loaded on the client.
The event handler receives one argument:
- the RadCalendar object that fired the event.
The following example uses the OnLoad event to navigate to December when the page loads:
ASPNET
<telerik:RadCalendar RenderMode="Lightweight" ID="RadCalendar1" runat="server">
<ClientEvents OnLoad="navigateToDecember" />
</telerik:RadCalendar>