tags:

views:

50

answers:

1

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
no..am not getting with this...
Thirst for Excellence