Re: [flexcoders] Splitting Array Content , keyword by field content

2008-02-12 Thread Sherif Abdou
that are added dynamically.-Flex Doc - Original Message From: Harry Saputra [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, February 12, 2008 10:33:44 PM Subject: RE: [flexcoders] Splitting Array Content , keyword by field content Check my code : arrJadwalPribadi = new

RE: [flexcoders] Splitting Array Content , keyword by field content

2008-02-12 Thread Harry Saputra
Subject: Re: [flexcoders] Splitting Array Content , keyword by field content you can't use a for loop, maybe try a cursor instead What you cannot do is iterate through the properties of an object if it is an instance of a user-defined class, unless the class is a dynamic class. Even with instances

RE: [flexcoders] Splitting Array Content , keyword by field content

2008-02-12 Thread Harry Saputra
Subject: RE: [flexcoders] Splitting Array Content , keyword by field content You shouldn't assume that a for-in or for-each-in loop will iterate over the items in any particular order. To ensure this, use a plain 'for' loop. Gordon Smith Adobe Flex SDK Team

RE: [flexcoders] Splitting Array Content , keyword by field content

2008-02-12 Thread Gordon Smith
Saputra Sent: Tuesday, February 12, 2008 6:57 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Splitting Array Content , keyword by field content Thanks for reply ! I will try ASAP. And the last, how to get a auto fit / resize (by content length) DataGrid Column width , so I can build

Re: [flexcoders] Splitting Array Content , keyword by field content

2008-02-12 Thread Sherif Abdou
: [flexcoders] Splitting Array Content , keyword by field content Dear All, I have DataProvider as Array like this : AAndi AAsh AAxe BBart BBob Called arrMainData. Can I split it into 2 variable Array when I complete retrieve all Data ? like this : arrAData AAndi AAsh AAxe arrBData BBart

[flexcoders] Splitting Array Content , keyword by field content

2008-02-12 Thread Harry Saputra
Dear All, I have DataProvider as Array like this : A Andi A Ash A Axe B Bart B Bob Called arrMainData. Can I split it into 2 variable Array when I complete retrieve all Data ? like this : arrAData A Andi A Ash A Axe arrBData B Bart B Bob Thanks :-)

RE: [flexcoders] Splitting Array Content , keyword by field content

2008-02-12 Thread Harry Saputra
: Wednesday, February 13, 2008 12:07 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Splitting Array Content , keyword by field content why not do that stuff server side and just bring it in to flex for use. I have no idea how big your data will be but that could be a better stradegy than

Re: [flexcoders] Splitting Array Content , keyword by field content

2008-02-12 Thread Sherif Abdou
@yahoogroups.com Sent: Tuesday, February 12, 2008 10:56:32 PM Subject: RE: [flexcoders] Splitting Array Content , keyword by field content Or may I content filter in DataGrid ( all item I shown in datagrid ) and filtering when columnA constraint ‘xxx’ value ? How ? From: [EMAIL PROTECTED] ups.com

RE: [flexcoders] Splitting Array Content , keyword by field content

2008-02-12 Thread Harry Saputra
, 2008 9:50 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Splitting Array Content , keyword by field content like this? ?xml version=1.0 encoding=utf-8? mx:WindowedApplication xmlns:mx=http://www.adobe.com/2006/mxml; layout=vertical creationComplete=initApp() xmlns:containers