Hi,

On ListCollectionVie we have this:

    public function toString():String
    {
        if (localIndex != null)
        {
            return ObjectUtil.toString(localIndex);
        }
        else
        {
            if (list && Object(list).toString)
                return Object(list).toString();
            else
                return getQualifiedClassName(this);
        }
    }

Which means it uses a different toString if the collection is filtered or 
sorted. Anyone know why this might be the case?

Thanks,
Justin

Reply via email to