RadCalendar for ASP.NET

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

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

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

See Also