Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Stevo on Aug 14, 2008 03:26
open dhtmlx forum
[GRID] Images in grid rows are missing predefined title ?!

Hello

In one of grid's columns I display a bit of html

<a href="/products/edit_product/10">
<img align="absmiddle" title="test" src="/images/icons/edit_product.png" alt="test"/>
</a>

The problem is, that after grid is rendered, the 'title' property of img tag is zeroed - set to empty string. Because of that I am missing a tooltip in firefox.

How can I fix that ?

Answer posted by Support on Aug 14, 2008 03:55

Grid generates its own tooltips for the cells, to disable in-grid tooltips and allow native ones - add next line to the grid init

grid.attachEvent("onMouseOver",function(id,ind){
     return false;
});