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 中.

<->



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