Re: [flexcoders] Re: Problem in sorting XMLList collection as a dataProvider for the list

2009-03-10 Thread geeky developer
Thanks to all those who replied, Following links strategy does work for me, My XML's structure was little weird and I was expecting to use some inbuilt sorting capability but I guess as recommended by few folks I have to custom and I followed the following link helpful, Anyone else is seeking soem

[flexcoders] Re: Problem in sorting XMLList collection as a dataProvider for the list

2009-03-09 Thread foobone9
It's a class property array. That line is simply showing a way to fall back to other compare field properties if none are provided via the 'fields' parameter. --- In flexcoders@yahoogroups.com, geeky developer geekydevelo...@... wrote: Hi foobone9I am trying to implement your sent/recommended

Re: [flexcoders] Re: Problem in sorting XMLList collection as a dataProvider for the list

2009-03-06 Thread geeky developer
Hi foobone9I am trying to implement your sent/recommended code but it is not recognizing internalPropList in line var propList:Array = fields ? fields : internalPropList;. What exactly in internalPropList here? Anyone has any idea, Thanks all for your reply and help . On Thu, Mar 5, 2009 at

[flexcoders] Re: Problem in sorting XMLList collection as a dataProvider for the list

2009-03-05 Thread foobone9
There is a nice example in the Sort class documentation: http://livedocs.adobe.com/flex/3/langref/mx/collections/Sort.html#compareFunction --- In flexcoders@yahoogroups.com, crazy developer geekydevelo...@... wrote: Hi Thanks for replying What does we mean by custom sort compare function,