backgroundColor="white">
import mx.collections.ArrayCollection;
[Bindable]
public var myAC:ArrayCollection = new ArrayCollection([
{firstName:"A",lastName:"C"},
{firstName:"B",lastName:"D"}
]);
public function fullName(rowItem:Object):String
{
return rowItem.firstName + ' ' + rowItem.lastName;
}