Checkbox rendering in datagrid
Posted
by Thirst for Excellence
on Stack Overflow
See other posts from Stack Overflow
or by Thirst for Excellence
Published on 2009-12-18T13:31:01Z
Indexed on
2010/05/10
14:04 UTC
Read the original article
Hit count: 188
flex
<mx:DataGrid id="dg" dataProvider="{cNumbersList}">
<mx:columns>
<mx:DataGridColumn dataField="contactName" headerText="Name" width="50"/>
<mx:DataGridColumn dataField="contactNo" headerText="ContactNo" width="40"/>
<mx:DataGridColumn headerText="Select Contact Number" width="20">
<mx:itemRenderer>
<mx:Component>enter code here
<mx:CheckBox selected="false" />
</mx:Component>
</mx:itemRenderer>
</mx:DataGridColumn>
</mx:columns>
</mx:DataGrid>
How to get all checked items into one more new array ?Plz help me anyone
© Stack Overflow or respective owner