Flex: Bindable注意事项

Categories: Flex; Tagged with: ; @ February 20th, 2009 15:34

Bindable通过Event机制来实现. 详见: http://liguoliang.com/2008/09/104/

但是在该过程中, 时常会因不小心变更对象 导致Bindable无法继续. 如下:

某DataGrid, 其dataprovider为 studentsAC – ArrayCollection

如下:

var studentsAC = new StudentAC();

dataGrid.dataprovider = studentsAC;

 

此后对studentAC进行任何操作都会及时在DataGrid中显示出来.

但如果进行

studentsAC = getStudentsACFromServer();

DataGrid将不会进行更新, 应使用:

dataGrid.dataprovider = getStudentsACFromServer(); ,

或选择将getStudentsACFromServer();中内容添加到studentsAC 中.

Flex中Event与Bindable

Categories: Flex; Tagged with: ; @ September 29th, 2008 21:28

[小站博客均为原创, 转载请保留以下信息:

作者:http://liguoliang.com 欢迎访问:Adobe上海用户组: http://riashanghai.com ]

Event:

1.事件派发 Dispatching

Flash.events.EventDispacher类提供了事件dispatch函数,如果需要dispatch事件,则应该考虑继承该类或其子类.如果不能继承该类,则应事先IEventDispatcher接口

2.监听事件 Listening to Events

在监听事件时应首先考虑是否要使用weak referenced.如果事件监听与派发与监听函数有共同的生命周期,则可以使用strong referenced,在其他的大部分情况下,则应使用weak referenced.
需要注意的是, 如果事件派发者属性为Public, 则在任何允许的地方都可以增加监听函数, 从而达到低内聚, 更易于操作.

(more…)



// Proudly powered by Apache, PHP, MySQL, WordPress, Bootstrap, etc,.