Completed
Last Updated: 10 Jun 2014 10:39 by Svetlin
Svetlin
Created on: 05 Jun 2012 02:29
Category: Editors
Type: Feature Request
1
IMPROVE. Allow the RadDateTimePicker editor of RadGridView to allow replacement of the months' popup
Allow the RadDateTimePicker editor of RadGridView to allow replacement of the months' popup.

Resolution:   This behavior can be achieved when set the HeaderNavigationMode property to Zoom of RadCalendar. The feature is introduced in Q2 2014.  
For example: 
void radGridView1_CellEditorInitialized(object sender, Telerik.WinControls.UI.GridViewCellEventArgs e)
        {
            RadDateTimeEditor dtEditor = e.ActiveEditor as RadDateTimeEditor;
            if (dtEditor != null)
            {
                RadDateTimeEditorElement element = (RadDateTimeEditorElement)dtEditor.EditorElement;
                element.Calendar.HeaderNavigationMode = HeaderNavigationMode.Zoom;
            }
        }
0 comments