This should help point you in the right direction...

Don


<mx:DataGridColumn textAlign="center" headerText="Cmplt" width="45"
editorDataField="selected" rendererIsEditor="true"  dataField="completed">
                                                                
<mx:itemRenderer> 
                                                                <mx:Component> 
                                                                <mx:CheckBox 
width="100%"  opaqueBackground="{data.completed
== true ? '0xfe4d45' : '0x7dbb81'}" /> 
                                                                </mx:Component> 
                                                                
</mx:itemRenderer>
                                                                
</mx:DataGridColumn>



--- In flexcoders@yahoogroups.com, coder3 <[EMAIL PROTECTED]> wrote:
>
> 
> Hi All,
> 
> i am using mx:DataGrid to display a list of results. but i would
like to add
> a checkbox in front of each item to get a list of detail reports
later. how
> can i do it?
> 
> 
> thanks
> 
> 
> -- 
> View this message in context:
http://www.nabble.com/a-checkbox-in-mx%3ADataGrid-tp14768070p14768070.html
> Sent from the FlexCoders mailing list archive at Nabble.com.
>


Reply via email to