When using Month view, if the user double clicks on a day from another month (previous or next), the calendar navigates to that month before raising MouseDoubleClick on the calendar of DoubleClick on the CalendarCellElement. Is there any way to cancel this navigation and / or another event that fires before the navigation on a double click? I am trying to take action when the user double clicks on a date, but I am losing the date that was clicked because of the navigation.
For example, If I am displaying the month of June 2014 in the calendar with month view (7 columns x 6 rows horizontal, Monday as the first day of the week) and the user double clicks on the 3rd cell in the first row (representing Wed. May 28), when the CalendarCellElement's DoubleClick event is raised, the Date of the CalendarCellElement is April 2, 2014 (the new date for that cell in the calendar after navigating to the previous month). I want to either 1) (preferred) capture this event before the navigation so that I may take action on 5/31 OR 2) Prevent the DoubleClick from firing
For example, If I am displaying the month of June 2014 in the calendar with month view (7 columns x 6 rows horizontal, Monday as the first day of the week) and the user double clicks on the 3rd cell in the first row (representing Wed. May 28), when the CalendarCellElement's DoubleClick event is raised, the Date of the CalendarCellElement is April 2, 2014 (the new date for that cell in the calendar after navigating to the previous month). I want to either 1) (preferred) capture this event before the navigation so that I may take action on 5/31 OR 2) Prevent the DoubleClick from firing