I have a simple case of a label whose text contents are bound to the value of a vector at a variable index. I define the binding using square brackets:
text="{_vector[_index]}"
FlashBuilder gives me the following warning:
"Data binding will not be able to detect changes when using square bracket operator."
But when the index changes, data binding does detect the change and displays the updated value immediately.
Why am I getting this warning and what can I do to get rid of it?
Here is my code:
SquareBracketTest.mxml
<?xml version="1.0" encoding="utf-8"?>
<stackoverflow:SquareBracketTester pageTitle="Square Bracket Binding Test"
xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:stackoverflow="stackoverflow.*">
<stackoverflow:layout>
<s:VerticalLayout />
</stackoverflow:layout>
<s:Label fontSize="24"
text="{_vector[_index]}" />
<s:Button label="next"
click="{_index = (_index + 1) % _vector.length}"/>
</stackoverflow:SquareBracketTester>
SquareBracketTester.as
package stackoverflow {
import spark.components.Application;
public class SquareBracketTester extends Application {
[Bindable] protected var _index:int = 0;
[Bindable] protected var _vector:Vector.<String> = new <String>[];
function SquareBracketTester() {
this._vector.push("AA");
this._vector.push("BB");
this._vector.push("CC");
}
} // class SquareBracketTester
} // package stackoverflow