Hello, I used the moveIndexFindRow method in the listBase class. The signature is this:
public function moveIndexFindRow(field:String, value:String, startingIndex:int
= 0, patternType:String = RegExPatterns.EXACT):Boolean
the value attribute has String as type.
It is very common to have a dataProvider with objects like
{myProp: myIntegerValue, ...}
calling moveIndexFindRow(“myProp”, String(myIntegerValue) wouldn’t work in this
case.
Why is value restricted to String?
-Dany
