flex实现DataGrid高亮显示数据功能的解决方案_Flex

flex要高亮数据一般可以使用选中效果或者设置背景,选中效果只能是高亮一条,多条高亮只能设置背景来达到效果。但是原生的DataGrid根本无法达到所要的效果,目前一般就是来改写原生的DataGrid,只需重新写一个类来重写drawRowBackground方法就可以了,代码如下

复制代码 代码如下:

package org.lxh 
{    
    import flash.display.Sprite; 
    import mx.controls.DataGrid; 
    public class SpecialDataGrid extends DataGrid 
    { 
        private var _rowColorFunction:Function;   //用于在外部能通过指定一个方法 去实现改变列的背景色 
        public function SpecialDataGrid() 
        { 
            super(); 
        } 
        public function set rowColorFunction(f:Function):void 
        { 
            this._rowColorFunction = f; 
        } 
        public function get rowColorFunction():Function 
        { 
            return this._rowColorFunction; 
        } 
        //复写该方法 
        override protected function drawRowBackground(s:Sprite,rowIndex:int,y:Number, height:Number, color:uint, dataIndex:int):void 
        { 
            if( this.rowColorFunction != null ){ 
                if( dataIndex < this.dataProvider.length ){ 
                    var item:Object = this.dataProvider.getItemAt(dataIndex); 
                    color = this.rowColorFunction.call(this, item, color); 
                } 
            }            
            super.drawRowBackground(s, rowIndex, y, height, color, dataIndex); 
        } 
    } 
}

用的时候先引入名称空间 xmlns:control="org.lxh.*",把原来的DataGrid改成下面这样

复制代码 代码如下:

<control:SpecialDataGrid id="planDataGrid" width="100%"  height="100%"  alternatingItemColors="[0xe3eaf2,0xe8f1f8]" dataProvider="{strArray}" rowColorFunction="colorFunction" doubleClick="planDataGrid_doubleClickHandler(event)" doubleClickEnabled="true"> 
                        <control:columns> 
                            <mx:DataGridColumn dataField="选择" width="50" sortable="false" resizable="false"  showDataTips="true"> 
                                <mx:itemRenderer> 
                                    <fx:Component> 
                                        <mx:CheckBox change="outerDocument.checkChangeHandlerForPlan(event)"/> 
                                    </fx:Component> 
                                </mx:itemRenderer> 
                            </mx:DataGridColumn> 
                        <mx:DataGridColumn dataField="id" headerText="主键" visible="false"/> 

                        </control:columns> 
                    </control:SpecialDataGrid>

rowColorFunction属性用来设置高亮的效果,例如那一列需要高亮,对应的function如下

复制代码 代码如下:

    private function colorFunction(item:Object, color:uint):uint 
    { 
                    var col:uint=0xe3eaf2; 
                    if(commonMsg.length > 0){ 
                        for(var i:int=0;i<commonMsg.length;i++){ 
                            if(commonMsg.getItemAt(i).id==item.id){ 
                                col=0xF10026; 
                            } 
                        } 
                    } 
                    return col; 

    } 

到这里效果就做出来了

时间: 2024-10-25 19:13:38

flex实现DataGrid高亮显示数据功能的解决方案_Flex的相关文章

easyui的datagrid获得数据的问题

问题描述 easyui的datagrid获得数据的问题 jsp页面使用了几个easyui的数据列表,但这个列表只能显示出表头,表的内容获取不到,程序没有报错,而且请求也没到达Controller,请大神指导一下,谢谢 参数名称 参数代码 解决方案 你说请求没有进Controller,那说明你请求的路径不对啊,你是用的MVC吧,路径写成"/控制器名/action名".然后在控制器的方法设个断点调试一下,要是进来了,你再看看你返回的Josn格式是否符合easy Ui的格式,一般数据不显示主

Flex将DataGrid数据导出为CSV格式

初始时想使用as3xls(http://code.google.com/p/as3xls/)直接导出Excel xls文件 , 但是此xls文件在Office 2010尝试打开出现文件损坏的提示, 无法浏览. 因此打算直接导出csv文件.       //导出csv        public static function exportToCSV(dataGrid:DataGrid):void{                         var dataProviderCollectio

[Asp.net]常见数据导入Excel,Excel数据导入数据库解决方案,总有一款适合你!

原文:[Asp.net]常见数据导入Excel,Excel数据导入数据库解决方案,总有一款适合你! 引言 项目中常用到将数据导入Excel,将Excel中的数据导入数据库的功能,曾经也查找过相关的内容,将曾经用过的方案总结一下. 方案一 NPOI NPOI 是 POI 项目的 .NET 版本.POI是一个开源的Java读写Excel.WORD等微软OLE2组件文档的项目.使用 NPOI 你就可以在没有安装 Office 或者相应环境的机器上对 WORD/EXCEL 文档进行读写.NPOI是构建在

如何用jquery 将 datagrid中数据导出到excel?

问题描述 如何用jquery 将 datagrid中数据导出到excel? 需要用到些什么插件?有例子更好 谢谢 解决方案 一个插件,将jquery数据生成excel的xml内容的字符串.下面是插件代码 <script> /** Jquery easyui datagrid js导出excel 修改自extgrid导出excel * allows for downloading of grid data (store) directly into excel * Method: extract

Granite Data Services 2.3.0.GA发布 多功能集成解决方案

Granite Data Services (GraniteDS)是一个用于建设Flex/JavaEE RIA应用程序的多功能集成解决方案.其主要目标是提供 AMF3/RemoteObject 的 Flex 3+/EJB3/Seam/Spring/Guice/POJO http://www.aliyun.com/zixun/aggregation/13521.html">应用程序开发的一个框架.它具有一个类似Comet的数据实施(通过HTTP发送AMF3请求)和 ActionScript3

Granite Data Services 2.3.2.GA发布 多功能集成解决方案

Granite Data Services (GraniteDS) 是一个用于建设Flex/JavaEE RIA应用程序的多功能集成解决方案.其主要目标是提供 AMF3/RemoteObject 的 Flex 3+/EJB3/Seam/Spring/Guice/POJO http://www.aliyun.com/zixun/aggregation/13521.html">应用程序开发的一个框架.它具有一个类似Comet的数据实施(通过HTTP发送AMF3请求)和 ActionScript

Granite Data Services 2.3.1.GA发布 多功能集成解决方案

Granite Data Services (GraniteDS)是一个用于建设Flex/JavaEE RIA应用程序的多功能集成解决方案.其主要目标是提供 AMF3/RemoteObject 的 Flex 3+/EJB3/Seam/Spring/Guice/POJO http://www.aliyun.com/zixun/aggregation/13521.html">应用程序开发的一个框架.它具有一个类似Comet的数据实施(通过HTTP发送AMF3请求)和 ActionScript3

数据库-datagrid的数据怎么保存到文本文档中啊?

问题描述 datagrid的数据怎么保存到文本文档中啊? 用adodc连接数据库,datagrid显示数据,然后要保存在文本文档中,各位大神教教我应该怎么做 解决方案 直接循环dataset,然后调用open print等语句写文本文件

将DataGrid中数据倒出Excel文件并下载

datagrid|excel|数据|下载    Imports System   Imports System.Text   Namespace toExcel      '功能:将ASP.net中DataGrid生成Excel文件下载.   'Mountains改进:1.支持中文 2.隐藏列不显示   '日期:2002.10.30   Public Class DataGridToCSV      Public Function GenerateFile(ByRef Page As Syste