Is there an example anywhere of how to format a date field for a datagrid? I've tried calling a labelFunction but anytime I apply a dateformatter using code I get nothing returned. I've tried a few variations of the code below.
public function getDateLabel(item:Object,column:DataGridColumn):String
{
return dateFormat.format(item[column.dataField]);
}