How do you set the grid so that the first row is the selected row?
Thanks
if (grid.Rows.Count > 0)
grid.Rows[0].Selected = true;
after setting the datasource use this
ultraGrid1.Selected.Rows.Clear();
if(ultraGrid1.Rows.Count>0)
ultraGrid1.Selected.Rows.Add(ultraGrid1.Rows[0]);