Glossary Item Box
Fired
When the setup is finalized (at the end of the calendar constructor), thus allowing custom code to be executed, 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 OnInit="Calendar_OnInit"> </ClientEvents></radc:radcalendar>
JavaScript
The javascript function for implementing the OnLoad event looks like this:
Copy Code function Calendar_OnInit(calendarInstance){ ....}