Hi, Problem sorted it was the change to ListCollectionView which mean we may still have a regression issue (form 4.10). Can anyone lend an hand with this?
Change was line 1211 from this:
if (localIndex && addedItems.length > 1)
{
addLocation = -1;
}
to:
if (localIndex && addedItems.length > 0)
{
addLocation = -1;
}
Thanks,
Justin
