Hi, I have a radgrid bound to an iList of objects. My list has objects of type "Voucher"
The user can select multiple rows in the grid.
I can enum through the selected rows using;
for each x in grd.SelectedItems
next
How can i get a reference to the underlying "Voucher" object the row is bound to?
thx!