Tooltip is disabled for cell, title attributes are removed

I have an excell cell with a number of div and img, each with ‘title’ attributes. Like this:

<div title="Title1"><img src="../img.png" alt="" /></div>
<div title="Title2"><img src="../img.png" alt="" /></div>

I disabled tooltips for the cell using enableTooltips(“false”). If I select and view the HTML generated, it is the same as above. If I hover over one of the icons, it would show “Title1”. However, if I leave/hover again, no tooltip is displayed.

If I select and show generated HTML again, my cell is now:

<div title=""><img src="../img.png" alt="" /></div>
<div title="Title2"><img src="../img.png" alt="" /></div>

Something is removing my titles. Any ideas?

Add the next to fully block grid’s tooltip logic

grid.attachEvent(“onMouseOver”, function(){ return false; })

Thanks, but I do not want to disable tooltips for the whole grid - I just want to disable tooltips for one column…

Please the following tutorial:
http://docs.dhtmlx.com/doku.php?id=dhtmlxgrid:event_onmouseover

You just need to check for the column index:

grid.attachEvent("onMouseOver", function(id,ind){ if (ind==needed_colIndex){ return false; } else {return true} });