It seems to me that the best idea is to use an arraycollection as the dataprovider for your datagrid. When your app receives the random number back it updates the arraycollection which, in turn, updates the datagrid. Now, when you need to send your email, just loop through the arraycollection (Check out IViewCursor for an alternative) and grab the data you want.
--- In [email protected], "ghus32" <[EMAIL PROTECTED]> wrote: > > I have an email part in my application where I am creating an > attachment funtion. > > I have flex uploading the file using php and in the php the php > renames the file to a random number. that random number is then > passed back to a flex datagrid. So if a person uploads 2 files then > the datagrid has 2 rows. > > When I send the email I need the values of those two rows so I can > tell the php which files to send with the email. > > So I need to have the values of each row so I can pass them to the > php.

