读书人

flex datagrid列修改后怎么捕捉及触发

发布时间: 2012-07-30 16:19:05 作者: rapoo

flex datagrid列修改后如何捕捉及触发

A.

FLEX's datagrid have below properties to catch the event of the modify of the datagrid (the editable is true).

?itemEditBegin="dg_itemEditBeginHandler(event)"

itemEditBeginning="dg_itemEditBeginningHandler(event)"

itemEditEnd="dg_itemEditEndHandler(event)"

itemEditorCreate="dg_itemEditorCreateHandler(event)"

?

below is my test reslult :

the order of the trigger of the above four events .

?

?

    itemEditBeginning?itemEditBeginitemEditorCreate ? ? ? -->trigger when the editor is createditemEditEnd ? ? ? ? ? ? ?-->after edit the data of the column

B.if you use the datasource's listener to listen the modify :? ? ? ? ?.addEventListener(CollectionEvent.COLLECTION_CHANGE,function);

读书人网 >flex

热点推荐