In my app, I'm looking up information on users within our database.

the search results are loaded into a datagrid in the main application.

When you click on one of those results, I'm using a popup title window 
component to show details about that user.  the init function (via the 
creationcomplete event) loads all of the details about that user into an 
object and populates the overview screen.

There are also 20+ windows that will contain all kinds of detailed 
information about the user - for example, addresses.

Since I've already got the data completely loaded into an object in the 
overview window... How to I reference that object in the subsequent 
popup window?

The overview window declares a private variable eInfo like this:

private var eInfo:Object = null;

A user can have more than one open overview window .. but the details 
windows will be modal.

I'm launching the Details window like this:

        dataWindow = PopUpManager.createPopUp(tnDetails, DataSummary, true);

In the details window (another titlewindow component, named 
DataSummary), I don't know how to properly access the eInfo object from 
the calling overview window.

How do I connect the two?

Rick


--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/flexcoders/

<*> Your email settings:
    Individual Email | Traditional

<*> To change settings online go to:
    http://groups.yahoo.com/group/flexcoders/join
    (Yahoo! ID required)

<*> To change settings via email:
    mailto:[EMAIL PROTECTED] 
    mailto:[EMAIL PROTECTED]

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 

Reply via email to