Categories | Question details Back To List | ||
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. Answer posted by dhtSupport on Jan 08, 2009 05:49 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. Answer posted by Steve on May 17, 2009 08:36 Are there any plans to fix this? Its a major pain for me. Thanks Answer posted by Support on May 18, 2009 03:15 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; }) |