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
260
Ultragrid Cell ToolTipText
posted

I have a grid and want to show a tooltiptext when you hover the mouse over to that particular cell where i set the tooltiptext, but its not showing any tooltip text.  I even tried the displaylayout.Override.TipStyleCell = TipStyle.Show; but no help.

 

This is my code: (ChildCell is a one of a cell in the ultragrid)

String ToolTip = "Original Projected Amt: {0}", 100);

ChildCell.ToolTipText = ToolTip;
  ChildCell.Value = 200;

//just in case i also set an image for this cell using
  ChildCell.Appearance.Image

Parents
No Data
Reply
  • 469350
    Suggested Answer
    Offline posted

    Hi,

    This seems like it should work. What event are you using to set the ToolTipText?

    Is it possible you are loading a layout into the grid at some point after this code is called that might be setting TipStyleCell back to Hide? You might try putting a button on the form that simply displays the TipStyleCell setting for the band.Override and the DisplayLayout.Override at run-time, just to be sure.

Children