I have a databound DataGridView. One of its columns is DataGridViewComboBox. The DataGridViewComboBox is also databound. Everything is working just fine until I wish to retrieve the DataRow behind the DataGridViewComboBox selected item (not the DataRow of the DataGridView but the datarow that fills the combobox's DisplayMember and ValueMember!).
How can I accomplish this? I need this because I need to display a whole bunch of data beside DisplayMember and ValueMember and this data is present inside the datarow of the DataTable to which the DataGridViewComboBox is bound.
Thanks for your kind help in advance.
Daniel