RE: [flexcoders] Flex 2 code to reload the entire application?

2007-02-04 Thread Dimitrios Gianninas
Depends on how you have your app built... if all your data is bound to some model object, then you can just do: ModelLocator.myData = new MyDataVO() and the view should reset itself. Dimitrios Gianninas RIA Developer Optimal Payments Inc. From:

RE: [flexcoders] Flex 2 code to reload the entire application?

2007-02-04 Thread KP
] On Behalf Of Tracy Spratt Sent: Saturday, February 03, 2007 6:17 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Flex 2 code to reload the entire application? While some might judge it a hack, others are successfully using navigateToUrl, with the url pointing to the flex app url

RE: [flexcoders] Flex 2 code to reload the entire application?

2007-02-02 Thread Tracy Spratt
While some might judge it a hack, others are successfully using navigateToUrl, with the url pointing to the flex app url itself, and the target _self. I've not used it myself, but there was just a thread about it here. Search the archives for more detail. Tracy