Flex 自定义DataGrid实现根据条目某一属性值改变背景颜色(flex布局可以自适应吗)全程干货

随心笔谈2年前发布 编辑
166 0
🌐 经济型:买域名、轻量云服务器、用途:游戏 网站等 《腾讯云》特点:特价机便宜 适合初学者用 点我优惠购买
🚀 拓展型:买域名、轻量云服务器、用途:游戏 网站等 《阿里云》特点:中档服务器便宜 域名备案事多 点我优惠购买
🛡️ 稳定型:买域名、轻量云服务器、用途:游戏 网站等 《西部数码》 特点:比上两家略贵但是稳定性超好事也少 点我优惠购买


package czgh.components
{
import flash.display.Sprite;

import mx.controls.DataGrid;
import mx.core.UIComponent;

public class OptionalDataGrid extends DataGrid
{
private var _rowColorFunction:Function;
private var _customed:Boolean;
private var _customerColor:uint=0;
public function OptionalDataGrid()
{
super();
}

override protected function drawRowBackground(s:Sprite, rowIndex:int, y:Number, height:Number, color:uint, dataIndex:int):void
{
color=0XFFFFFF;

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);
}

override protected function drawHeaderBackground(headerBG:UIComponent):void
{
headerBG.setStyle(“borderVisible”,”false”);
}

public function set rowColorFunction(rowColorFunction:Function):void
{
this._rowColorFunction=rowColorFunction;
}

public function get rowColorFunction():Function
{
return this._rowColorFunction;
}

}
}

© 版权声明

相关文章