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
2715
Tooltip on third band
posted

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.

Parents
  • 5520
    Verified Answer
    posted

    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";

Reply Children
No Data