Hi,
I need to get into second band row while looping inside grid rows, however following code always returning rows in band 0 while grid is having 3 bands. Why is that and do you know better way?
For Each row In Me.grd.Rows
Next
Thanks!
Mike Saltzman provides two ways to find rows in child bands in the following post:http://forums.infragistics.com/forums/p/14631/53835.aspx#53835
Thanks I found this using Search, works fine:
Dim allRowsEnumerator = Me.grdEAA.Rows.GetRowEnumerator(GridRowType.DataRow, e.Cell.Band, Nothing) For Each row As UltraGridRow In allRowsEnumerator