How to control or disable pop up hint balloons over cells

Hi everybody,
I wonder if there is a way to control content in pop up balloons that appear over cell when the mouse is over or simply the way to disable it at all. Now it looks nonsensical when such balloons appear with the same content as cell content or even more ridiculous empty balloons for empty cells.
Thank you in advance for any help.

Hi,

Have you tried mygrid.EnabledTooltips ?
For instance for the following 5 column grid I enabled the tool tip to some of it’s column cell and enable for others:
mygrid.EnabledTooltips(true,true,false,false,true)

-Gabriel

The function starts with a lowercase. I.e: enableTooltips.

Hi, Gabriel
Thank you very much!
I’ve just tried .enableTooltips and in case of disabling pop ups this method works perfectly!
Thank you again.