[flexcoders] Re: DataGrid sort

2009-05-20 Thread mhbmarcos
thank Alex But, i see the stack execution, but the sort function is throw by de arralListView, and i am not delete this execution. any another solution? thank --- In flexcoders@yahoogroups.com, Alex Harui aha...@... wrote: I would set a breakpoint on your sortable function so you can see

RE: [flexcoders] Re: DataGrid sort

2009-05-20 Thread Alex Harui
:56 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: DataGrid sort thank Alex But, i see the stack execution, but the sort function is throw by de arralListView, and i am not delete this execution. any another solution? thank --- In flexcoders@yahoogroups.commailto:flexcoders

RE: [flexcoders] Re: Datagrid - Sort Error

2008-09-06 Thread Alex Harui
function, the Sort code doesn't check to see whether the sortFIeld exists From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of sleblang Sent: Friday, September 05, 2008 9:03 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Datagrid - Sort Error Thanks. However, I looked

[flexcoders] Re: Datagrid - Sort Error

2008-09-05 Thread sleblang
Thanks. However, I looked at the code and it looks basically the same as mine with the only noticeable difference being the compare function. Is the compare function necessary if I am only sorting by one column (Date)? Thanks. --- In flexcoders@yahoogroups.com, Igor Costa [EMAIL PROTECTED] wrote:

[flexcoders] Re: Datagrid sort order: is there a natsort() such as in PHP?

2008-05-06 Thread dougco2000
You have to do a sortCompareFunction, ala mx:DataGridColumn dataField=number sortCompareFunction={sortOnNumber} / and then create something like: private function sortOnNumber( obj1:Object, obj2:Object ):int { if( obj1[number]

Re: [flexcoders] Re: DataGrid Sort by Date problem -- Flex 2

2008-01-08 Thread Tom Chiverton
On Tuesday 08 Jan 2008, vkc_nair wrote: Any help on this? Did you check the parse() result ? In light of http://rachaelandtom.info/node/1373 I would :-) -- Tom Chiverton Helping to efficiently conquer enterprise-class solutions on: http://thefalken.livejournal.com

[flexcoders] Re: DataGrid Sort by Date problem -- Flex 2

2008-01-07 Thread vkc_nair
Any help on this? Thanks --- In flexcoders@yahoogroups.com, vkc_nair [EMAIL PROTECTED] wrote: Hi All, I'm having problem with DataGrid sort by date column. My date value in the XML file is as =Mon Apr 03 15:18:59 PDT 2006. Put the value on DataGrid like mx:DataGridColumn