How can you determine exactly when a Flex DataService filloperation has
completed?ex:dsDataService.fill(arrayList, 'flex:hql',
'Fromcom.package.Object);trace(arrayList.length); // <-- This returns
0***while(arrayList.length < 1) {} // <--- This never endsThe trace
returns 0 but if I wait a second or two beforecalling it it returns with
the correct size of 30.The arraylist will also successfully bind to a
datagrid.Can I do something with the AsyncToken that is returned fromthe
fill to know when t...