When I hover over a particular cell value, the hover value is same as the cell value. Can I change the hover text different from the cell value?
Thanks
When I hover over a particular cell value, the hover value is same as the cell value. Can I change the hover text different from the cell value?
Thanks
Set you after grid load this code..
$("#PersonelGrid_DefViewMainPage").attr("title", "This is my Title.");
it's work..
In general the tooltip is the
title
attribute of the<td>
elements. You can use setCell method to change the tooltip (see this). In more complex situations you can use jQuery.attr (see here) or you a tooltip plugin (see here).You can use cellattr attribute in the colModel for a column to set custom tooltip. For example
This can achieve by 2 steps
title:false
write a global function and attached as a formatter in colModel
There you go!...