bank tool tip appearing in IE

HI,

I am creating a table using new dhtmlXGridObject() . Some of the column values are blank. If I hoover the mouse over it, I get a blank tool tip display. This happens on in IE and not in firefox.
Could anyone provide some help on this.

Thanks

This is known IE issue. There is no way to disable empty tooltip in IE for specific cell. You can disable tooltip only for whole column. Example is available here dhtmlx.com/docs/products/dht … oltip.html

thanks for the reply.
Is there a common way to totally disable tooltip for all the grids in my app. OR do i have to manually do a mygrid.enableTooltips(“false,false”); for all the grids.

Thanks

Adding this code worked for me:-

dhtmlXGridCellObject.prototype.getTitle=function(){
var tip = this.cell.innerHTML;
tip = tip.replace(" “,”");
tip = tip.replace(" “,”");
if(tip!=null && tip!=""){
return tip;
}else{return “”;}
};