主頁 > 知識(shí)庫 > Flex 自定義DataGrid實(shí)現(xiàn)根據(jù)條目某一屬性值改變背景顏色

Flex 自定義DataGrid實(shí)現(xiàn)根據(jù)條目某一屬性值改變背景顏色

熱門標(biāo)簽:南昌crm外呼系統(tǒng)如何 廣州ai外呼系統(tǒng)業(yè)務(wù) 中山外呼系統(tǒng)中間件 地圖標(biāo)注多家店 什么行業(yè)需要電話機(jī)器人 車載電話機(jī)器人 外呼系統(tǒng)號(hào)碼顯示 天津企業(yè)外呼系統(tǒng)代理商 無錫電銷外呼系統(tǒng)代理

自定義拓展的DataGrid(as類)代碼如下:

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);//設(shè)定顏色 
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; 
} 


} 
}

在mxml中實(shí)現(xiàn)自定義的datagrid并使用 其rowColorFunction方法

//通過比較每條記錄中dataField為act和stand的大小決定該條記錄的背景顏色 
private function setCustomColor(item:Object, color:uint):uint 
{ 
if (Number(item["act"])Number(item["stand"])) 
{ 
return 0x7bbfea; 
} 

return color; 
}
您可能感興趣的文章:
  • Flex 獲取每月第幾周小例子
  • Flex 遍歷Object鍵和值的示例代碼
  • Flex DataGrid 偽合并單元格實(shí)現(xiàn)思路
  • Flex4 DataGrid中嵌入RadioButton實(shí)現(xiàn)思路及代碼
  • flex 遍歷Object對(duì)象內(nèi)容的實(shí)現(xiàn)代碼
  • 全面了解flex的用途

標(biāo)簽:欽州 海西 泰州 攀枝花 仙桃 呂梁 佛山 滄州

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Flex 自定義DataGrid實(shí)現(xiàn)根據(jù)條目某一屬性值改變背景顏色》,本文關(guān)鍵詞  Flex,自定義,DataGrid,實(shí)現(xiàn),;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Flex 自定義DataGrid實(shí)現(xiàn)根據(jù)條目某一屬性值改變背景顏色》相關(guān)的同類信息!
  • 本頁收集關(guān)于Flex 自定義DataGrid實(shí)現(xiàn)根據(jù)條目某一屬性值改變背景顏色的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章