編集可能なデータグリッドがあります。ユーザーが単一のセルを編集した後にセルの値を取得できるかどうか疑問に思っていました。
ユーザーが編集を終了すると、データグリッドはイベントをトリガー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>
何かご意見は?どうもありがとう。