Marcos, I second that you post this to some other technical forum. Quickly reviewimg, if you are trying to sort a date column then you should set the 'sortCompareFunction' to your function rather than setting the 'dataTipFunction'.
Thanks On Feb 3, 2012 12:23 PM, "Marcos Nunes" <marcos.a.nu...@gmail.com> 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 >