ASPxClientDateNavigator.SelectionChanged Event
Occurs when the end user selects another date.
Declaration
SelectionChanged: ASPxClientEvent<ASPxClientDateNavigatorSelectionChangedEventHandler<ASPxClientDateNavigator>>
Event Data
The SelectionChanged event's data class is ASPxClientDateNavigatorSelectionChangedEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
selectedDates | Returns the selected dates related to the event. |
Remarks
function OnSelectionChanged(s, e) {
scheduler.GotoDate(e.selectedDates[0]);
skipEvent = true;
}
Online Demo
See Also