Hi,
Just wondering if it's possible to set the hover/mouseover for column headings. My intent is that when the user hovers over the column title they will see a help box that describes what's in the column.
Something like:
$col["title"] = "result";
$col["titlehover"] = "result = var1 * var2 / 3";
$col["name"] = "result";
Thanks
1 Answers
This can be done with some tooltip plugin and bind header cell manually on loadComplete event of grid.
$opt["loadComplete"] = "function(ids) { ……………………. }";
$grid->set_options($opt);
TH Selector for grid 'list1' and column 'gender' would be:
jQuery("#list1_gender")
Refer faq: How to use 'qtip2' with PHPGrid.
Your Answer