por ejemplo si el campo numero recibe un 1 o un 2 que se activo su checkbox si no que permanezca desactivado... asi tengo mi Datagrid como hago lo demas?
Código HTML:
Ver original
<mx:DataGrid id="dgDatagrid" dataProvider="{dpDatagrid}" x="290" y="183" width="645" height="247" tabIndex="4" > <mx:columns> <mx:DataGridColumn headerText="Np" dataField="numero" width="25" resizable="true"/> <mx:DataGridColumn headerText="Check" dataField="check" width="45"> <mx:itemRenderer> <fx:Component> <mx:HBox horizontalAlign="center" verticalAlign="middle"> <s:CheckBox id="check2" selected="false" enabled="false"/> </mx:HBox> </fx:Component> </mx:itemRenderer> </mx:DataGridColumn> </mx:columns> </mx:DataGrid>