RE: [flexcoders] Remove Sort

2007-12-26 Thread Alex Harui
.sort = null From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of markgoldin_2000 Sent: Wednesday, December 26, 2007 9:27 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Remove Sort I am using Sort to be able to run Find

Re: [flexcoders] Remove Sort

2007-12-26 Thread Kevin
You would need to do one of two things depending on what functionality you want. If you have a previous sort that you want to reinstate, then you need to: var savedSort:Sort = someListCollection.sort; someListCollection.sort = new Sort(); //implement all your sort and find logic... //when

[flexcoders] Remove Sort

2007-12-26 Thread markgoldin_2000
I am using Sort to be able to run Find...() commands on cursors. But at the end I dont want to have it shown sorted, so how can I get rid of sorting after I have found an item in it?