while i using drag & drop from listbox1 to listbox2 ,how can i get all the items of listbox2 in flex
A:
Tip: Add an empty dataProvider on listbox2. Your dropped Items will appear there.
Or you can try this:
for(var i:int = 0;i < listbox2.numChildren;i++)
{
var theChild:Object = listbox2.getChildAt(i);
}
Paratron
2009-11-23 21:36:42
no..am not getting with this...
Thirst for Excellence
2009-11-24 17:57:11