I am using Infragistics WebDataGrid to display data. I want to select first row by default. I tried following code for the same but not working
SelectedRowCollection selectedRows = gvHospital.Behaviors.Selection.SelectedRows;
selectedRows.Add(this.gvHospital.Rows[1]);
Any suggestion?