[flexcoders] Real world usage of Flex

2007-11-20 Thread real_yoni
Hi All, I'm looking for real world usage of Flex (other than maps.yahoo.com and harley-davidson)? can publish links? Thanks, p.s. I'm not entirely sure that this is the right group to ask this question so please refer me to the right one if you can. Yoni

[flexcoders] How can I convert from XmlList to ArrayCollection?

2007-11-13 Thread real_yoni
How can I convert from XmlList to ArrayCollection? Thanks, Yoni.

[flexcoders] DateTimeAxis: binding to different field name

2007-11-12 Thread real_yoni
Hi all, I'm trying to find a way to bind DateTimeAxis to a different field (other than date). but to no avail. this is a piece of the XML I'm getting from the server: I would like to bind DateTimeAxis to the f1 attribute. Thanks, Yoni

[flexcoders] Re: Treeview - On demand updating of child nodes.

2007-11-07 Thread real_yoni
Thanks! it looks like XMLList did the trick...

[flexcoders] Re: Treeview - On demand updating of child nodes.

2007-11-06 Thread real_yoni
The tree defenition: Upon loading I'm calling this fuction that works great: private function handleGetAccounts(result:XML): Boolean { accountsData = new XMLListCollection(result.act); return true; } Upon clicking on an item I'm calling this function which doesn't work private functi

[flexcoders] Re: Treeview - On demand updating of child nodes.

2007-11-06 Thread real_yoni
Tree defenition: After the user logs in the following function is being called with success: private function handleGetAccounts(result:XML): Boolean { accountsData = new XMLListCollection(result.act); return true; } After the user clicks on one of the tree node the following function i

[flexcoders] Re: Treeview - On demand updating of child nodes.

2007-11-05 Thread real_yoni
attribute that you are using for > the label. Or use a labelFunction(). Seeing the raw data usually means > the tree does not know what to use for the label. > > Tracy > > > > > > From: flexcoders@yahoogroups.com [mailto:[EM

[flexcoders] Treeview - On demand updating of child nodes.

2007-11-05 Thread real_yoni
Hi, I'm trying to update a tree upon an on click event (so that when a user clicks on a node it access the server and fetch the child nodes). My problem is that when expanding the node I see the raw XML.. does any one knows how to reflect the changes? Thanks, Yoni.