New to Telerik UI for ASP.NET AJAX? Download free 30-day trial

Get the Client-side Object of the Embedded RadCalendar

Since the popup calendar in RadScheduler is RadCalendar, its client-side object is registered on the page and can be obtained as usual by using:


<script type="text/javascript">
function pageLoad()
{       
   var schedulerPopupCalendar = $find('<%= RadScheduler1.ClientID + "_SelectedDateCalendar" %>');
   alert(schedulerPopupCalendar.get_id());
}        
</script> 

The RadCalendar client object can be further operated with by using its client-side API.

In this article