Hello, I can convert a UltraGridRow to DataRow only the data
If your grid is bound to a datatable/dataset then the ListObject property of the UltraGridRow will be a DataRowView object.
What if it's bound to a Linq query?
I can't figure out how to fetch the DataRowView from the ListObject in this case. It will cast to the type defined in my project, but nulls when attempting cast on DataRowView.
. DataRowView drv = (DataRowView)e.Row.ListObject;. [drv is null]
Trying to incorporate the Row/Cell error display from your how-to.
Thanks