I need to highlight or bookmark a particular row after refresh/setdatasource.
c1truedbgrid.bookmark = dataTable.AsEnumerable().Where(x => x.Field<string>("Col") == stringValue))
.
How can I get the index of the row in datatable with a string filter for a particular column?
Expected output
c1truedbgrid.bookmark = index of the particular with the a particular string value.