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
275
Loop through childbands of selected row in ultragrid
posted

Hi, I have ultragrid that can be grouped by its column.

How can I loop through selected row (specific grouped row) and navigate its childbands?

Currently, my code goes like this:

 var rows = Mygrid.Rows.GetRowEnumerator(GridRowtype.DataRow, null, null);

foreach(UltraGridRow childRow in rows)

{

  string text = childRow.Cells["ItemToGet"].Value.ToString();

}