Make sure no null error is being thrown by the renderer, either because of
data assumptions or because an uninitialized visual component.
We normally override the renderer's set data function to be like -
public override function set data (value:Object):void{
  super.data = value;
  if(initialized){
    setData(value); //calling a designated function for populating the data
in the UI components
  } else {
    callLater(setData,[value]);
  }
}

In addition, always check if the data object itself or some of its
properties are null.

Good luck,
Evyatar

On Fri, Dec 26, 2014 at 8:50 AM, Prabhu Moorthy <
[email protected]> wrote:

> Hi,
>
> Have created mobile app with applicationDPI="160".
> If deploy the app in android/iOS phone have more than 200 ppi, issue is
> Spark DataGrid rows are not select able/not clickable after scroll the
> DataGrid.
>
> Issue:(Desktop/All Andoird/iOS ppi>200)
> Apache Flex 4.13.0
> SparkDatagrid_Issue_Flex_4.zip
> <
> http://apache-flex-users.2333346.n4.nabble.com/file/n9296/SparkDatagrid_Issue_Flex_4.zip
> >
>
> Working fine:(All Andoird/iOS/Desktop)
> Flex 4.6
> SparkDatagrid_Fine_Flex_4.zip
> <
> http://apache-flex-users.2333346.n4.nabble.com/file/n9296/SparkDatagrid_Fine_Flex_4.zip
> >
>
> Is there any solution?
>
> Thanks & Regards,
> M.Prabhu
>
>
>
>
> -----
> Thanks & Regards,
> M.Prabhu
> --
> View this message in context:
> http://apache-flex-users.2333346.n4.nabble.com/Spark-Datagrid-row-non-selectable-clickable-after-scroll-the-Datagrid-tp9296.html
> Sent from the Apache Flex Users mailing list archive at Nabble.com.
>

Reply via email to