[GRID] Images in grid rows are missing predefined title ?!

Hello



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





test





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 ?




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;
});