Hi,
I have the tooltip displayed on the column values. I need to apply the tooltips on column header text as well.
Could you please let me know with sample code how to enable the tooltip for the column headers.
Thanks,
Shrenath.
To enable the tooltips with their default settings, just set the name property to “Tooltips”. The following code enables the default behavior of the igGrid Tooltips. In Javascript: $("#grid1").
It can be added to Grid Configuration as well, as in:
Hello,
Thank you for posting in our community.
In order to add tooltip to the column header you should add "title" attribute to the "th" element of the column. Each "th" element has "id" attribute which has the following structure "<gridId>_<columnKey>" where <gridId> is the id of the grid and <columnKey> is the key of the column.
Here is the example code:
Please let me know if you need any further assistance with this matter.