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 Reply Children