SoFunction
Updated on 2025-04-02

Flex custom DataGrid implementation changes background color according to a certain attribute value of the entry

The custom extension DataGrid (as class) code is as follows:

package  
{ 
import ; 

import ; 
import ; 

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 < ) 
{ 
var item:Object=(dataIndex);//Set the colorcolor=this._rowColorFunction.call(this, item, color); 
} 
} 



(s, rowIndex, y, height, color, dataIndex); 
} 

override protected function drawHeaderBackground(headerBG:UIComponent):void 
{ 
("borderVisible","false"); 
} 



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

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


} 
}

Implement a custom datagrid in mxml and use its rowColorFunction method

//Determine the background color of the record by comparing the sizes of dataField as act and stand in each record.private function setCustomColor(item:Object, color:uint):uint 
{ 
if (Number(item["act"])<Number(item["stand"])) 
{ 
return 0x7bbfea; 
} 

return color; 
}