Hi
i am using a repeater inside repeater
<mx:Repeater id="itemRepeater" recycleChildren="true"
dataProvider="{students.childStudents}">
<displayObjects:ItemRepeater onClickItem="{setStudent}"
id="itemRepeat" itemStudent=" {itemRepeater.currentItem}" />
<mx:Repeater id="childRepeater" recycleChildren="true"
dataProvider="itemRepeater.currentItem.childStudents}">
<displayObjects:StudentRepeater
onClickSpecDetails="{setSpecificationForItem}"
childStudent="{childRepeater.currentItem}" />
</mx:Repeater>
</mx:Repeater>
i had an array collections of the students
which holds the array of objects of type student
this student class have array of childStudents which again contains
array students
i have to show the parent students into the first repeater
and then its children in second repeater all the things are working
fine but
when the array collection is stored into the DataBase and it is coming
back from the DB
it is swapping the children
Means StudNumber has children 1 2 3
and studAlphabets has children A B C D
it is swapping the children like
StudNumber
1
2
3
StudAlphabates
A
B
C
D
please tell me whats wrong in my code
i am 100% sure when the Array Collection is coming from the DB it
coming properly i had tested that
by putting a break point
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Flex
India Community" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/flex_india?hl=en
-~----------~----~----~----~------~----~------~--~---