手机
当前位置:查字典教程网 >编程开发 >Flex >Flex4 DataGrid中如何嵌入RadioButton
Flex4 DataGrid中如何嵌入RadioButton
摘要:复制代码代码如下:MXML页面复制代码代码如下://--------------------------------------------...

复制代码 代码如下:

<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页面

复制代码 代码如下:

<?xml version="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>

<>

<s:RadioButton id="radio_button"

label=""

enabled="false"

horizontalCenter="0" verticalCenter="0" />

</s:GridItemRenderer>

【Flex4 DataGrid中如何嵌入RadioButton】相关文章:

Flex tree加虚线显示效果并且替代原始图标

flex小技巧之加载GIF图片

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

Flex iframe 向jsp中传参示例

flex内嵌html网页示例代码

Flex中如何判断是否在组件之外单击

FLEX 事件机制-自定义事件介绍

Flex4 DataGrid中嵌入RadioButton实现思路及代码

flex4.0 利用外部项呈示器显示List信息并添加图片示例

全面了解flex的用途

精品推荐
分类导航