Unplanned
Last Updated: 15 Aug 2017 10:08 by ADMIN
ADMIN
Ralitsa
Created on: 28 Mar 2016 10:14
Category: Calendar
Type: Feature Request
0
IMPROVE. RadCalendar - expose properties in order to make the fast navigation popup easily customizable
Currently, you can use reflection in order to access the properties of the fast navigation popup. 

Workaround: 
this.radCalendar1.HeaderNavigationMode = Telerik.WinControls.UI.HeaderNavigationMode.Popup;

CalendarNavigationElement a = this.radCalendar1.CalendarElement.CalendarNavigationElement;
FieldInfo fi = typeof(CalendarNavigationElement).GetField("dropDown", BindingFlags.NonPublic | BindingFlags.Instance);
RadDateTimePickerDropDown dropDown = (RadDateTimePickerDropDown)fi.GetValue(a);
dropDown.PopupOpening += new RadPopupOpeningEventHandler(dropDown_PopupOpening);
0 comments