-
1. Re: How to convert nested object in to array connection?
Flex harUI Jun 1, 2011 10:36 PM (in response to senthil s)HierarchicalCollection does that
-
2. Re: How to convert nested object in to array connection?
senthil s Jun 1, 2011 10:41 PM (in response to Flex harUI)But my object contains difference names....is it posible to trace?
EX:
[Obj]
[One]
[data]-----> i want to trace this data. by checkin object name
[Two]
[Three]
[data]
-
3. Re: How to convert nested object in to array connection?
Flex harUI Jun 1, 2011 11:25 PM (in response to senthil s)You may need to write your own conversion.
-
4. Re: How to convert nested object in to array connection?
senthil s Jun 1, 2011 11:43 PM (in response to Flex harUI)RESULT FORMATE:
->obj = mx.utils.ObjectProxy (@61ccd41)
-> CusID_Internal = Object (@87e8371)
-> cl = "2"
-> CusIDtoName = Object (@87e8731)
->cl = "3"
-> CusName = Object (@87e8b21)
->cl = "8"
-> d = Object (@87e8ef9)
->cl = "6"
-> document_date = Object (@87e8bb1)
->cl = "3"
-> workflow_id = Object (@87e8c41)
->cl = "0"
I use this below code i can trace the cl value by orderwise but i want to trace the exact "document_date of cl " value means how can i do. pls give some sample code....
Thanks in advance,
senthil.
for each(var obj:Object in obj_array )
for each( var obj2:Object in obj ){
{
trace( String( obj2 ) );
}
}



