DataGrid column selection events
What event is called when you click on an editable field to edit it, and then click off of the field? in a datagrid using Flex 4? If I'm not making much sense I'm trying to make a datagrid where you can edit the fields and once you're done editing those fields the application calls an event 开发者_JAVA百科listener which triggers a save method.
Here is the answer for future reference:
DataGridEvent.itemEditBegin and DataGridEvent.itemEditEnd.
From the flex docs.
精彩评论