hi!
I need to set a tooltip on the first cell (button cell) in the third level band in my grid . How could i do that ? I can't find how to refference theese child rows ..
Thanks!
Marius.
Thanks Hady!
Worked perfectly!
foreach (UltraGridRow ugr in ultraGrid1.Rows)
foreach (UltraGridRow ugr1 in ugr.ChildBands[0].Rows)
foreach (UltraGridRow ugr2 in ugr1.ChildBands[0].Rows)
ugr2.Cells[0].ToolTipText = "ToolTip";