Hi,
I have a VERY basic DataGrid as shown below.
All OK when I use the emulator (using intelliJ on a Mac)

When I run this on an iPad or an Android Phone, I cannot
edit the 2nd column at all

I can only edit row1, column1

Anyone with any thoughts on what's happening and how
I can fix this would be very appreciated?

Note: That I have a more complex project and
would like the user to be able to edit and enter data in a DataGrid,
but I have the problem outlined in this simple example:-(

Phil.

======================

I am running: 
Flex: 4.15.0
AIR: 20.0.0.233

Android is running 5.0.2

=====================


*<?xml version="1.0" encoding="utf-8"?>
<s:View xmlns:fx="http://ns.adobe.com/mxml/2009"; 
                xmlns:s="library://ns.adobe.com/flex/spark">

    <s:Spacer height="25"/>

    <s:DataGrid id="dataGrid" editable="true" width="90%">
        <s:ArrayCollection>
            <s:DataItem name="One"   price="100"  />
            <s:DataItem name="Two"   price="200" />
            <s:DataItem name="Three" price="300" />
        </s:ArrayCollection>
    </s:DataGrid>


</s:View>*





--
View this message in context: 
http://apache-flex-users.2333346.n4.nabble.com/Spark-DataGrid-editable-problem-tp13537.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.

Reply via email to