I managed to reproduce it Win7 64bit, sdk 4.10, FP 11.8, Air 3.8 Firefox 23.
Used the following... <?xml version="1.0" encoding="utf-8"?> <!--- Test application --> <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" creationComplete="onCreationComplete();" > <fx:Script> <![CDATA[ import mx.collections.ArrayCollection; [Bindable] protected var dgArray:ArrayCollection = new ArrayCollection([]); protected function onCreationComplete():void { dgArray.addItem( { Artist: 'Pavement1', Album: 'Slanted and Enchanted', Price: 11.99 } ); dgArray.addItem( { Artist: 'Pavement2', Album: 'Slanted and Enchanted', Price: 11.99 } ); dgArray.addItem( { Artist: 'Pavement3', Album: 'Slanted and Enchanted', Price: 11.99 } ); dgArray.addItem( { Artist: 'Pavement4', Album: 'Slanted and Enchanted', Price: 11.99 } ); dgArray.addItem( { Artist: 'Pavement5', Album: 'Slanted and Enchanted', Price: 11.99 } ); dgArray.addItem( { Artist: 'Pavement6', Album: 'Slanted and Enchanted', Price: 11.99 } ); dgArray.addItem( { Artist: 'Pavement7', Album: 'Slanted and Enchanted', Price: 11.99 } ); dgArray.addItem( { Artist: 'Pavement8', Album: 'Slanted and Enchanted', Price: 11.99 } ); dgArray.addItem( { Artist: 'Pavement9', Album: 'Slanted and Enchanted', Price: 11.99 } ); dgArray.addItem( { Artist: 'Pavement10', Album: 'Slanted and Enchanted', Price: 11.99 } ); dgArray.addItem( { Artist: 'Pavement11', Album: 'Slanted and Enchanted', Price: 11.99 } ); dgArray.addItem( { Artist: 'Pavement12', Album: 'Brighten the Corners', Price: 11.99 } ); } ]]> </fx:Script> <s:layout> <s:VerticalLayout horizontalAlign="center" verticalAlign="middle" gap="0" /> </s:layout> <s:DataGrid width="300" height="100" dataProvider="{dgArray}" editable="true"> <s:columns> <s:ArrayList> <s:GridColumn dataField="Artist"/> <s:GridColumn dataField="Price"/> </s:ArrayList> </s:columns> </s:DataGrid> </s:Application> On Mon, Aug 12, 2013 at 7:17 PM, OmPrakash Muppirala <bigosma...@gmail.com>wrote: > João, > > I just tried your sample code in a web project and a desktop project, but > cannot reproduce your issue. > > I tried it with Flex 4.10 on Flash Player 11.8 and AIR 3.8 on Windows 7. > > What is your platform, runtime versions, etc.? > > Thanks, > Om > > On Mon, Aug 12, 2013 at 3:25 PM, João Saleiro < > joao.saleiro.webf...@gmail.com> wrote: > > > Hello, > > > > With Flex 4.10, if you scroll an editable Spark Datagrid and click a > cell, > > the itemEditor will be placed on the wrong position. > > A severe bug, IMHO. > > > > Here's what's happening: http://www.boonzi.com/public/** > > flex/datagrid/bug.png < > http://www.boonzi.com/public/flex/datagrid/bug.png> > > I logged the bug here: > https://issues.apache.org/**jira/browse/FLEX-33665< > https://issues.apache.org/jira/browse/FLEX-33665> > > > > Unfortunately I just found out this one a couple of hours before a > planned > > release. Any tips that can help finding a fix for it? > > > > Thanks, > > > > JS > > > > > > > > > > > > >