Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted on Aug 10, 2007 06:23
open dhtmlx forum
tooltip in dhtmlxgrid

tooltip is not appearing when mouse cursor is moved to column header.
Also, if row content have value with > sign in it, tooltip shows > instead of >.
How can i solve these issues?
Please help.
Answer posted on Aug 13, 2007 14:20
>>tooltip is not appearing when mouse cursor is moved to column header.
Currently tooltips works for data part only. If you need them for headers you can use complex form of header initialization.
Instead of
    grid.setHeader("hA,hB")
use
    grid.setHeader("<span title='tooltip for hA'>hA</span>,<span title='tooltip for hA'>hA</span>");

>>if row content have value with > sign in it, tooltip shows > instead of >
By default tooltip show actual content of cell, where all special chars replaced by related entities.
Basically it is possible to update _drawTooltip function and use
    ced.cell.innerText||ced.cell.textConted 
instead of
    ced.getValue();

Answer posted by Stanislav (Support) on Dec 10, 2014 01:27

If you haven't found the needed information there and still looking for a solution, you will find the additional help checking php send get request and scheduler template.