手机
当前位置:查字典教程网 >编程开发 >Flex >Flex4 DataGrid中嵌入RadioButton实现思路及代码
Flex4 DataGrid中嵌入RadioButton实现思路及代码
摘要:MXML页面=grid.dataGrid.selectedItems;if(null==selected_items){radio_butt...

<s:DataGrid id="viewDg" width="100%" height="100%" fontFamily="微软雅黑" horizontalScrollPolicy="off" borderVisible="false" dataProvider="{viewList}"> <s:columns> <s:ArrayList> <s:GridColumn width="{wid*0.02}" resizable="false" itemRenderer="Module_SchoolView.RadioButtonGridItemRenderer"/> <s:GridColumn width="{wid*0.25}" headerText="名称" dataField="xysj02" resizable="false"/> <s:GridColumn width="{wid*0.25}" headerText="地名" dataField="xysj02name" resizable="false"/> <s:GridColumn width="{wid*0.35}" headerText="URL" dataField="xysj04" resizable="false"/> <s:GridColumn width="{wid*0.13}" headerText="备注" dataField="xysj05" resizable="false"/> </s:ArrayList> </s:columns> </s:DataGrid>

MXML页面

<"1.0" encoding="utf-8"?> <s:GridItemRenderer xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/mx"> <fx:Declarations> <> </fx:Declarations> <fx:Script> <![CDATA[ //---------------------------------------------------------------------------------------------------------- override public function prepare(hasBeenRecycled:Boolean):void { super.prepare( hasBeenRecycled ); // We make the radio button mimic the selection status of the whole row. const selected_items: Vector.<Object> = grid.dataGrid.selectedItems; if( null == selected_items ) { radio_button.selected = false; return; } if( -1 != selected_items.indexOf( data ) ) radio_button.selected = true; else radio_button.selected = false; } //---------------------------------------------------------------------------------------------------------- ]]> </fx:Script> <!--The radio button is only a visual indicator for whether the row is selected or not. The "selected" property of the radio_button will be controlled by the "prepare" function. The radio_button should not be allowed any user interaction. Hence disabling it.--> <s:RadioButton id="radio_button" label="" enabled="false" horizontalCenter="0" verticalCenter="0" /> </s:GridItemRenderer>

【Flex4 DataGrid中嵌入RadioButton实现思路及代码】相关文章:

Flex实现双轴组合图的设计思路及代码

FLEX 获取DataGrid行号和列号示例代码

Flex父子窗口相互调用实现思路及源码

获取到AdvancedDataGrid选中行的全部数据

Flex3 DataGrid拖拽到ClumnChart动态显示图表实现代码

Flex设置LinkButton的背景色有思路有源码

在Flex中给datagrid添加右键菜单项的具体实现

Flex DataGrid 伪合并单元格思路及代码

Flex正则表达式判断中文或全角字符代码

flex actionScript读取文件示例代码

精品推荐
分类导航