Please post your question to Stack Overflow or the Adobe Flex Forums to find someone who can help you.

On 2/3/2012 12:22 PM, Marcos Nunes wrote:
Hi

I made download the function (below)  to sort column date in DateGrid, but
is not working

private function date_sortCompareFunc(itemA:Object, itemB:Object):int
{
    var dateA:Date=new Date(Date.parse(itemA.dob));
    var dateB:Date=new Date(Date.parse(itemB.dob));
    return ObjectUtil.dateCompare(dateA, dateB);
}

<s:GridColumn dataField="DATA_VENCIMENTO_ID"
     width="115"
     headerText="Data Vencimento"
     dataTipFunction="date_sortCompareFunc">

someone can help me?

Marcos Nunes



--
Jeffry Houser
Technical Entrepreneur
203-379-0773
--
http://www.flextras.com?c=104
UI Flex Components: Tested! Supported! Ready!
--
http://www.theflexshow.com
http://www.jeffryhouser.com
http://www.asktheflexpert.com
--
Part of the DotComIt Brain Trust

Reply via email to