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);