I've set up an application that gets data from a data serviceconfigured
with a java-dao adapter. If I define a DataGridwith thearray populated
by the fill method I see the data in thegrid. Cool.So I know I've
configured and coded everything correctly.However, if I try to access
the data with the following code,itappears my array is empty! ray = new
ArrayCollection(); ds = new DataService("assets"); ds.fill(ray); var
asset:Asset = ray[0];This gives me an index '0' out of bounds error.
I've alsotr...