我有一个可编辑的数据网格。我想知道用户编辑单个单元格后是否可以检索单元格值。
如果用户完成编辑,我的数据网格将触发griditemEditorSessionSave
事件,但我不知道如何获取新的单元格值。
//script
protected function dg_gridItemEditorSessionSaveHandler(event:GridItemEditorEvent):void
{
//I can only get the columnIndex but not the value
Alert.show (event.columnIndex);
}
//mxml
<s:DataGrid id="dg" editable="true" x="5" y="3" width="734" height="153"
gridItemEditorSessionSave="dg_gridItemEditorSessionSaveHandler(event)"
>
....
.....
</Datagrid>
有什么想法吗?非常感谢。