I never tried to use the spark datagrid on mobile but maybe this works [1]?
HTH,
Olaf
[1]: Set each column 'editable'
...
<fx:Declarations>
<s:ArrayCollection id="myData">
<s:DataItem name="One" price="100" />
<s:DataItem name="Two" price="200" />
<s:DataItem name="Three" price="300" />
</s:ArrayCollection>
</fx:Declarations>
...
<s:DataGrid id="dataGrid" dataProvider="{myData}" editable="true"
width="90%">
<s:columns>
<s:ArrayList>
<s:GridColumn dataField="name" editable="true"/>
<s:GridColumn dataField="price" editable="true" />
</s:ArrayList>
</s:columns>
</s:DataGrid>
...
--
View this message in context:
http://apache-flex-users.2333346.n4.nabble.com/Spark-DataGrid-editable-problem-tp13537p13542.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.