Completed
Last Updated: 07 May 2015 15:10 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 27 Apr 2015 13:54
Category: Editors
Type: Bug Report
0
FIX. RadDateTimePicker - Opening, Opened, Closing and Closed event are not fired when the DateTimePickerElement.ShowTimePicker property is set to true
Workaround:

            this.radDateTimePicker1.DateTimePickerElement.ShowTimePicker = true; 
            RadDateTimePickerCalendar calendarBehavior = this.radDateTimePicker1.DateTimePickerElement.GetCurrentBehavior() as RadDateTimePickerCalendar;
            calendarBehavior.PopupControl.Opened += PopupControl_Opened;
            calendarBehavior.PopupControl.Opening+=PopupControl_Opening;
            calendarBehavior.PopupControl.Closing+=PopupControl_Closing;
            calendarBehavior.PopupControl.Closed+=PopupControl_Closed;
0 comments