什么是Spark中的内联itemRenderer复选框元素?
<mx:AdvancedDataGridColumn headerText="Eliminar" dataField="eliminar" width="100" textAlign="center">
<mx:itemRenderer>
<fx:Component>
<mx:HBox horizontalAlign="center">
<mx:CheckBox id="chkEliminar" change="{data.eliminar = chkEliminar.selected}" selected="{data.eliminar}"/>
</mx:HBox>
</fx:Component>
</mx:itemRenderer>
</mx:AdvancedDataGridColumn>
最佳答案
内联itemRenderer在火花中的工作方式与在Halo中相同。
您可以使用Spark自己的CheckBox组件<s:CheckBox>
,但也可以继续使用示例中的Halo CheckBox <mx:CheckBox>
。
关于apache-flex - Spark中的Flex MX代码相当于什么?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5183907/