I have a sports site with several datagrids that list players. I want to drilldown on a player's name to obtain more info about him with a function like
private function moreInfo(event:ListEvent):void { trace (event.currentTarget.id);
svc.getPlayerByYear(dg1.selectedItem.nameID);
}
where dg1 is the datagrid id and shows up in the trace.
I wish to extend this to other datagrids e.g. dg2 by using the (event.currentTarget.id) in the service call but have so far failed to find the correct method of binding, brackets or whatever is required
Cheers