Hello
Jörg
//
Hi,
Have you tried setting the SelectedAppearance on the Cell?
This code would only work after the row was selected or activated. What event is it in?
Yes, I think ActiveAppearance on the cell was added in 2010, so your version doesn't have it. In the old version, the only way to handle this was to use a DrawFilter. There's a sample of this approach here:
DrawFilter for Backcolor - Infragistics Forums
Hm. I would think this would work in RowSelected:
ultraCombo1.SelectedRow.Cells[0].SelectedAppearance.BackColor = Color.White;
Maybe you need to set the ActiveAppearamce, too.
ultraCombo1.SelectedRow.Cells[0].ActiveAppearance.BackColor = Color.White;