I am trying to initiate an operation when the user selects a date range, which I am able to do by working with the SelectionChanged event. But I get erroneous selections due to the user moving the mouse (hovering) over other dates which causes the control to report those date(s) as `Selected dates`. The control is in `Extended` selection mode. How does one turn off the selection of hovering actions and just allow button click selections.
-Or- Is there an ability to clear a selection?
<telerik:RadCalendar Name="rcDateRangeSelector"
Grid.Row="1"
Grid.Column="2"
Rows="3"
Columns="1"
Orientation="Vertical"
SelectionMode="Extended"
IsTodayHighlighted="False"
HeaderVisibility="Visible"
ViewsHeaderVisibility="Visible"
VerticalAlignment="Top"
SelectionChanged="RadCalendar_SelectionChanged"
Culture="en-US" />
-Or- Is there an ability to clear a selection?
<telerik:RadCalendar Name="rcDateRangeSelector"
Grid.Row="1"
Grid.Column="2"
Rows="3"
Columns="1"
Orientation="Vertical"
SelectionMode="Extended"
IsTodayHighlighted="False"
HeaderVisibility="Visible"
ViewsHeaderVisibility="Visible"
VerticalAlignment="Top"
SelectionChanged="RadCalendar_SelectionChanged"
Culture="en-US" />