how to get the value a cell in a childband (band(1))?
Hi gobords!
I must admit i haven't tried it, but i think you can use somtehing like that :
UltraGridRow currParentRow = ultraGrid.Rows[i];
and then
UltraGridRow currChildRow = currParentRow.Rows[j];
and then access any cell you like, thanks to the Cells member of UltraGridRow...
You can refer to :
http://help.infragistics.com/Help/NetAdvantage/NET/2007.2/CLR2.0/html/Infragistics2.WebUI.UltraWebGrid.v7.2~Infragistics.WebUI.UltraWebGrid.UltraGridRow_members.html
Actually, it's more like:
UltraGridRow currChildRow = currParentRow.ChildBands[0].Rows[j];
You have to use the ChildBands because there can be more than one child band.