Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
3455
How to select a row even if it is grouped
posted

HI,

How to select a row

set

{

this.UltraGrid1.Rows[value].Selected = true;

}

if the grid is grouped, ie

SortedColumns.Count>0

 

regards,

pgr2008

  • 469350
    Verified Answer
    Offline posted

     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.