Is there a way to show the full column header with a mouseover event?
Also, can the text in the column header wrap for long field names?
2 Answers
You can use html in $col["title"].
e.g.
$col["title"] = "<span title='This is Long Name Feild and again very long'>This is Long Name Feild <br> and again very long</span>";
Your Answer