What is the method to set different colors for alternate rows in a flex datagrid? So that two adjacent rows are identified easily?

link|improve this question

63% accept rate
feedback

2 Answers

up vote 8 down vote accepted

Use alternatingItemColors style. You can specify as many colors as you want in the array.

<mx:DataGrid id="dg" alternatingItemColors="[#449933, #994433]"
    dataProvider="{[{d:'ASD', c:'$#'},{d:'WER', c:'^@'},{d:'VCB', c:'*!'}]}">
    <mx:columns>
    	<mx:DataGridColumn dataField="d"/>
    	<mx:DataGridColumn dataField="c"/>
    </mx:columns>
</mx:DataGrid>

This style takes effect only if no backgroundColor is specified.

link|improve this answer
1  
Excuse my color sense :( – Amarghosh Nov 12 '09 at 6:09
Great.. Thank you.. I left out that work, thing I need to write some custom item renderer for it.. This is a lot easier .. Thanks :-) And your color sense isn't too bad ;-) – Angeline Nov 14 '09 at 7:32
feedback

An alternative method is to use the DataItemBound(Object, DataGridItemEventArgs) event handler.

The Object in this event signature is the DataGrid control, so recast it and use .DataGrid.Items.Count modulo 2 to obtain a reference for when .DataGridItemEventArgs.Item is an alternate row. I then created a css style for the alternate and changed .DataGridItemEventArgs.Item.CssClass to that newly created style.

The advantage with this method is that other row color manipulation can be done after this for highlighting; the alternateItemColor solution from above will always be the last css change before rendering, potentially overwriting any other highlighting.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.