RadCalendar for ASP.NET AJAX

RadControls for ASP.NET AJAX

RadDatePicker, RadTimePicker, RadDateTimePicker and RadMonthYearPicker expose the ChildrenCreated server event, which occurs after the child controls are created.

Caution

ChildrenCreated can be wired only during the Page_PreInit event, since it is fired before the regular handlers are attached.

TheChildrenCreated event handler receives two arguments:

  1. The control whose children have just been created. This argument is of type object, but can be cast to the appropriate type.

  2. A DefaultViewChangedEventArgs object. This object has the following two properties:

    • OldView is the CalendarView object for the view that was current before the change.

    • NewView is the CalendarView object for the current view after the change.

You can use this event to set date input, calendar and time view properties, or add additional controls. The following example uses the ChildrenCreated event handler to add a control that clears the selection:

See Also