We have a date column that shows a date picker control. How can we change the style of the date picker? We don't want to show a red circle for the selected date..
By default, the grid cell use a DateTimeEditor, which uses a Microsoft MonthCalendar Control. That control doesn't have much in the way of styling and you can't change the red circle as far as I know.
What you could do is set the EditorControl property of the column to an UltraCalendarCombo control. The CalendarCombo is a pure Infragitsics control with all of the usual appearance and styling options.
Thanks Mike,
-greg