[flexcoders] Re: Viewstack problems

2007-11-19 Thread Josh VanderBerg
Try setting the creationPolicy='all' on the viewstack and perhaps the canvases as well. -- Josh Vanderberg vanderblog.typepad.com - Flex blog and open source flex components --- In flexcoders@yahoogroups.com, Rafael Faria [EMAIL PROTECTED] wrote: Hello all, I'm having a big trouble with a

[flexcoders] Re: Viewstack problems

2007-11-19 Thread johantrax
First lets explain the problem: A viewstack normally doesn't create all it's children, but only the visible ones. This has been done in an ateempt to minimize the startuptime of your application. Possible solution: 1. Ask yourself if you really need to write data on something that is not visible.

Re: [flexcoders] Re: Viewstack problems

2007-11-19 Thread Ben Marchbanks
I found that using a bound Model component is a great solution to populating and updating data displayed on viewstack children. You can update the Model and when the viewstack child is visible the modified data will be present. for example: Create a Model mx:Model id=myModel record

RE: [flexcoders] Re: Viewstack problems

2007-11-19 Thread Tracy Spratt
, November 19, 2007 12:56 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: Viewstack problems I found that using a bound Model component is a great solution to populating and updating data displayed on viewstack children. You can update the Model and when the viewstack child

[flexcoders] Re: Viewstack problems

2007-11-19 Thread Josh VanderBerg
To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: Viewstack problems I found that using a bound Model component is a great solution to populating and updating data displayed on viewstack children. You can update the Model and when the viewstack child is visible the modified data

[flexcoders] Re: Viewstack problems

2007-11-19 Thread Rafael Faria
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ben Marchbanks Sent: Monday, November 19, 2007 12:56 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: Viewstack problems I found that using a bound Model