Tittle in link dhtmlx

Hello:
I need to remove the title that appears when I position myself in the link from a cell in my listing dhtmlxGrid.

I have constructed the link like this:

String enlace = actions.getId()+"^javascript:selectElement(" + actions.getId() + “);^_self”;

You may blosk the native dhtmlx titles returning false in onMouseOver event.
For example:

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

Thanks, its correct.