Hello,
I want to used tooltips on images i put in a dhtmlx grid, but unfortunately, it seems that dhtmlxgrid clears them at display. I have several images in a single cell, therefore i cant use the cell’s tooltip. I tried to disable the tooltips for a column, but it did not help.
Thanks
Add the next line to the grid’s init
grid.attachEvent(“onMouseOver”,function(){
if (index ==1 ) return false;
return true;
})
where 1 need to be replaced with index of column ( zero-based ) for which native tooltips need to be preserved