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

OnDateSelected

The OnDateSelected client-side event handler is called immediately after the value of the control is changed.

The event handler receives two arguments:

  1. the object that fired the event.

  2. an event arguments object that exposes the following methods:

Name Return Type Arguments Description
get_oldValue() string Returns the old value of the control, formatted as a string.
get_newValue() string Returns the new value of the control, formatted as a string
get_oldDate() Date object Returns the old value of the control as a Date object.
get_newDate() Date object Returns the new value of the control as a Date object.

The following example shows the OnDateSelected event for RadDatePicker. The OnDateSelected event works the same way for RadTimePicker and RadDateTimePicker.

<telerik:RadTimePicker RenderMode="Lightweight" runat="server" ID="RadTimePicker1">
    <ClientEvents OnDateSelected="dateSelected" />
</telerik:RadTimePicker>    
function dateSelected(sender, eventArgs) {
    alert("The date was just changed from " + eventArgs.get_oldValue() + " to " + eventArgs.get_newValue());
}

See Also

In this article