Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Vivian on Jan 14, 2010 08:35
open dhtmlx forum
dhtmlx tooltips on images inside a cell

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
Answer posted by Stanislav (support) on Jan 15, 2010 03:03
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