or
Just wondering if this is possible. I haven't been able to get it to work so far.
Also is it possible to hide the Filter row while still leaving filtering enabled, as i want to do all filtering programmatically.
Thank You
public void SelectRows(DataTable tbl) |
{ |
foreach (DataRow row in tbl.Rows) |
this.Rows[_KeyMappings[Convert.ToInt32(row[_KeyMember])]].IsSelected = true; |
if (tbl.Rows.Count > 0) |
this.CurrentRow = this.SelectedRows[0]; |
this.Update(); |
} |