I have a UltraCalender combo on my form. Using code it is added to a column on my ultragrid. When I run the app I can see both the combo on the form, and the one inside the grid. When I click the one on the form the BeforeDropDown event fires. When I click the one in the grid the event does not fire.
I really hope this is not a bug...
No, it isn't; when embedded in a grid the control's events do not fire. I don't remember but maybe the grid's BeforeCellListDropDown fires...if that doesn't work, you can hook the CalendarComboEditor's BeforeDropDown event. You can cast the column.EditorResolved to type Infragistics.Win.UltraWinSchedule.CalendarCombo.CalendarComboEditor and you will see that this class exposes a BeforeDropDown event.