2

What is the equivalent of editedItemPosition for the Spark datagrid?

zero323
  • 322,348
  • 103
  • 959
  • 935
Gurtnamona
  • 21
  • 2

2 Answers2

3

To programmatically set the editing cell

dataGrid.startItemEditorSession(rowIndex, columnIndex)

To retrieve the editing cell

dataGrid.editorColumnIndex
dataGrid.editorRowIndex

More details: http://help.adobe.com/en_US/flex/using/WS0ab2a460655f2dc3-427f401412c60d04dca-7ff3.html

trung
  • 1,104
  • 11
  • 13
-1

Try these properties :

editorColumnIndex="0"
editorRowIndex="0"
Nate
  • 2,881
  • 1
  • 14
  • 14
  • He didn't specify that he needed to set the property (it is just a one sentence question) - had he clarified he needed that then a new solution could be suggested. – Nate Aug 26 '11 at 21:33