待回答。
- 作者:onglong | www.ways2.com
-
关键字
以下这些都不支持双向绑定:
Style properties
Effect properties
The request property of the HttpService, RemoteObject, and WebService classes.
The arguments property of the RemoteObject class.
- 作者:SWFAQ | http://swfaq.org
1. 数据被更改,调度事件时;
2. 当 Application 启动,数据绑定的源(source object)调度 initialize 事件时;
- 作者:SWFAQ | http://swfaq.org
可进行绑定的属性,在《Adobe Flex Language Reference》中会有标明“此属性可用作数据绑定的源”的。
只读、静态常量都只在 Application 启动时绑定一次。
- 作者:SWFAQ | http://swfaq.org
绑定对象,只有整个对象的引用改变时才发生数据绑定:
[Bindable]
private var myObj:MyObj = new MyObj();
绑定对象的属性(包括getter),当属性值改变时发生数据绑定:
[Bindable]
public class Boy extends Object
{
}
- 作者:SWFAQ | http://swfaq.org
不进行绑定:<mx:Text text=”{myArrayCollection[0]}”/>
可进行绑定:<mx:Text text=”{myArrayCollection.getItemAt(0)}”/>
- 作者:SWFAQ | http://swfaq.org