I am using a DataSet as the DataSource of my UltraGrid and am using an ErrorProvider. Is it possible to get the underlying column error of a cell or row error of a row through the grid rather than having to find the row in the datatable based on the values in the grid?
I'm not sure offhand whether this is possible, but you don't really have to do any work locating the underlying DataRow, since there is a ListObject on the UltraGridRow that will return that DataRow.
-Matt
Thanks Matt, so you would just do:
Dim MyRow as DataRow = UltraGridRow.ListObject ?
Then do whatever validation on the row?