GRID: Empty Tooltips in IE?

Hi,



In Internet Explorer 7, empty grid cells display a little blank tooltip when the user hovers the mouse over the cell.



Firefox displays no tooltip at all for blank cells, which is the correct behaviour.



Is there any way of suppressing tooltips for IE when the cell is empty?



Thanks in advance,

Jon.



Unfortunately in the current dhtmlxGrid version there isn’t possibility to fix it. You can disable tooltips for all column but not only for the emply cells.

Are there any plans to fix this? Its a major pain for me.

Thanks

You can add next code to the init of the grid

grid.attachEvent(“onMouseOver”,function(id,index){
var val = mygrid.cells(id,index).getTitle();
if (val == “”) return false; //block empty tooltips
return true;
})