[Solved]: grid : tag in header is functioning but displayed

Hi, i’m using “_in_header_special” function to display a tooltip into header but :

in grid.setHeader("Path {#special} , … the {#special} tag is displayed :cry:

I want it to be hidden like it should be.
Notice that the function is doing it’s job : tooltip is enable on the good tag {#special}.

Thanks for helping me.

Hello,
try to add tag.innerHTML = data[0]; to your code

For example:

grid._in_header_special=function(tag, index, data){ tag.style.color="red tag.title="Warning!"; tag.innerHTML = data[0]; }

Thank you that solved the problem. :mrgreen: