RadCalendar for ASP.NET

OnInit Send comments on this topic.
See Also
Telerik RadCalendar Client-Side > Client-Side Events > OnInit

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

<_asp3a_checkbox id="BeforeExpand" runat="server" text="BeforeClientPanelItemExpanded">
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)
{
     ....
}

See Also