I'm pretty new to Flex but I'm taking a few tutorials to try and get the hang of a project I'm working on.
I'm using AS3.
I currently need to just add an arraycollection (A) to an arraycollection (B) that is populating a datagrid. So when the user clicks an option on the left column, the resulting arraycollection (A) will be added to the currently displayed results in the right column.
I also needed it to filter out any duplicate entries. So if B already had a record that was in A, it wouldn't be added.
I think I can just loop through A adding each row to B by using the additem() function, but I'm not exactly sure what syntax to use the loop properly, but if there's a better suggestion, I'm certainly open to it.
Thank so much for any assistance!