HI,
How to select a row
set
{
this.UltraGrid1.Rows[value].Selected = true;
}
if the grid is grouped, ie
SortedColumns.Count>0
regards,
pgr2008
When you group the grid, the root-level rows will be GroupByRows and the real data rows will be children of those GroupByRows. So you would need to find the row under the approriate parent row.