Tooltip in header

Hi,

is it possible to make a tooltip in second row from Header? (best from XML data)

Thanks im advance!

Please check this article docs.dhtmlx.com/doku.php?id=dhtm … eader_cell

Thank you for your reply, but it doesn’t work for second row in header…
How can i use “grid._in_header_special” for second row in header?

You should place {#special} in the attachHeader method:

grid.attachHeader("A,B{#special},C");

Thanks. It works. But it shows the part #{special} too.
Here is my code:

in java:
StringBuffer after = new StringBuffer("");
after.append("<call command=“attachHeader”>#text_filter,#text_filter,week");
for (int j = 0; j < this.getHeader().size(); j++) {
String header = getHeader().get(j)+"{#special}";
after.append("," + header);
}
after.append("");
after.append("");

and in xhtml site:
mygrid._in_header_special=function(tag){
tag.title=“Warning!”;
}