import mx.collections.ArrayCollection;
import mx.events.ListEvent;
import mx.controls.Alert;
public var myAC:ArrayCollection = new ArrayCollection([
{name:"A", email:"a@d.com"},
{name:"B", email:"b@d.com"}]);
public function handleClick(evt:ListEvent):void
{
Alert.show(evt.rowIndex + " / col:" + evt.columnIndex + "." + "for " + evt.currentTarget.selectedItem.name);
}
dataProvider="{myAC}">