Krzysztof Szlapinski wrote:


so lets say I've got this list:

[snip]

and I've got the handle for drop event

function doDrop(event){



var data = event.dragSource.dataForFormat('items');

var s:String = ""; for (var i in data) s += data[i].label + "\n"; alert(s);


}

what do I get in data then

'data' is an Array that contains the list items.

Manish




Reply via email to