I have a list bound to a Datagrid
via a Bindinglist
, I need a full 2 way databinding
MyBindingList = new BindingList<Item>(List<Item>);
SmartGridItems.DataSource = _myBindingList;
I cannot find out now, how I can access the Item
, if I know the row in the grid.
e.g. after editing I want to validate the item, but I can do that only if I get a reference to the Item that has been edited.
Or how can I retrieve the item in my list if I know the associated row in the grid.
Thank you very much for your help