I don't know what this would mean:
employeeList[0].dataProvider

There is not a dataProvider for each repeated item, there is one for the
whole repeater.  There is one item object for each repeated ui.

If you know the index of the repeater item you want, say 0, use it to
get the corresponding dataProvider item object:
Var oItem:Object = employeeList.dataProvider[0];

Then depending on the structure of the dataProvider item object, you
should be able to reference any property you want:
oItem.myProperty

The [Object object] means you are trying to display a complex object as
a string.  Dot down to a property.  If it is really a single value, try
casting or toString()

Tracy

-----Original Message-----
From: [email protected] [mailto:[EMAIL PROTECTED] On
Behalf Of mackdoyle
Sent: Monday, November 14, 2005 4:24 PM
To: [email protected]
Subject: [flexcoders] Re: Getting the value of a repeated list box

I still can't seem to get this, if I try...
employeeList[0].value I get the selected item

employeeList[0].dataProvider[0] I get [object Object]

So now If I could just get one level deeper. the drag initialor is
being populatedwith an array whose iems are named TXTPROJECTNAME. So
the items in the drop target should be named the same right? so this
should work but doesn't:

employeeList[0].dataProvider[0].TXTPROJECTNAME.







--
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



 






------------------------ Yahoo! Groups Sponsor --------------------~--> 
Most low income households are not online. Help bridge the digital divide today!
http://us.click.yahoo.com/cd_AJB/QnQLAA/TtwFAA/nhFolB/TM
--------------------------------------------------------------------~-> 

--
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/

<*> 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