In answer to question 3, check out the comments here http://livedocs.adobe.com/flex/3/html/help.html?content=celleditor_4.html to see how to fix CheckBox so it works properly as a DropInListItemRenderer.
--- In [email protected], Asif Nawaz <aasif...@...> wrote: > > Let we have following data in xml form. > > <employees> > <employee> <name> Smith </name> <age> 25 </age> <isselected> true > </isselected> </employee> > <employee> <name> John </name> <age> 28 </age> <isselected> true > </isselected> </employee> > > <employee> <name> Roger </name> <age> 30 </age> <isselected> false > </isselected> </employee> > > <employee> <name> Andy </name> <age> 20 </age> <isselected> false > </isselected> </employee> > > <employee> <name> Kim </name> <age> 18 </age> <isselected> false > </isselected> </employee> > </employees> > > 1 - How do i create XMLList from this xml at design time in action script.2- > Use this XMLList object as data provider of datagrid.3- How to bind > isselected item of xml with checkbox. >

