Hello everyone, I'm having an issue with a datagrid.

The dataprovider for my datagrid is an arrayCollection of objects 
(objectParentVO).

My objectParentVO has 2 properties:

public var id       : int;
public var children : ArrayCollection; //objectChildVO's

My objectChildVO has 5 properties:

public var id        : int;
public var name      : String;
public var code      : String;
public var isActive  : Boolean;
public var isDeleted : Boolean;

The columns for my datagrid are not mapped to my objectParentVO but to my 
objectChildVO and they are dynamically added by actionscript.

When I fill my datagrid's dataprovider, everything displays right but once I 
scroll, all the values get mixed up and I can't tell which object is 
which...???? The funny thing is that the currect objects are always in the same 
place only the display values get mixed up...

Can anyone understand why and how this is happening???

Thanks!
-David

Reply via email to