getting item from datatable
Hello
I have a list of items displayed in a datatable:
class Item {
String id;
//get/set
}
Each id record is displayed as a commandl link and on click I want to get the selected Item.
Currently I am getting the id via the request, but I want to see if there was a better way - like using an actionListener for example..
This is probably very simple...Any ideas?

