Glossary Item Box
Fired
When a page is loaded, allowing the calendar to use the page’s load event to calculate or initialize its properties with custom code, if required.
Arguments
calendarInstance - the Telerik RadCalendar instance that raised the event.
Can be cancelled
no
Example
ascx/aspx
Copy Code <radc:radcalendar id="Ca1endar1" runat="server"> <ClientEvents OnLoad="Calendar_OnLoad"> </ClientEvents></radc:radcalendar>
JavaScript
The javascript function for implementing the OnLoad event looks like this:
Copy Code function Calendar_OnLoad(calendarInstance){ ....}