0
votes

im trying split arrayCollection and copy into another arrayCollection. Is it possible .any ideas guys ?

1

1 Answers

0
votes

You can use addAll method for adding one IList to another.

myCollection.addAll(anotherCollection);