We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date

Balloon tooltips

Hi

I would like to display a tooltip attached to a cell on cell activation to guide the user in the data entry format. I would also like to be able to attach a tooltip to any particular cell when a paste event occurs over a large group of cells that informs the user of any invalid data.

The documentation isn't clear on how to do this.

Thanks
JB

1 Reply

JP Jagadeesan Pichaimuthu Syncfusion Team January 30, 2019 12:16 PM UTC

Hi Jonathan, 

Thanks for using Syncfusion products. 

To display the ToolTip for specific cell, you could enable the tooltip using GridTooltipService.SetShowTooltips method and use the ShowToolTip and ToolTip property. Please refer the following code example and the sample. 
 
C# 
GridTooltipService.SetShowTooltips(gridControl, true); 
gridControl.Model[i, j].ShowTooltip = true; 
gridControl.Model[i, j].ShowTooltip = true; 
gridControl.Model[i, j].ToolTip = ((i * j) + 0.024).ToString(); 
 

Regards, 
Jagadeesan 


Loader.
Live Chat Icon For mobile
Up arrow icon