I having a problem with contentColor / backgroundColor of a Spark DatagridColumn.
I have
<s:GridColumn>
<s:itemEditor >
<fx:Component>
--- < component like.. combobox>
<fx:Component>
<s:itemEditor >
<s:GridColumn>
Well.. i tried to color that single column with a color (lets say "red"). I tried giving a className, setting up the background color, etc etc.
I noticed "conentColor" works but only when you click on the compoment to "edit" the cell, but i want to see the column's cells coloured even if im not editing them...
Any ideas??
Thanx so much!
DefaultGridItemRenderer
is the renderer that is used by default. Assigning it explicitly won't change anything. You have to make your own ItemRenderer with custom background color. – RIAstar