1

I am using,

http://struts.jgeppert.com/struts2-jquery-grid-showcase/index.action

to showcase my grid. Here the tool-tip is visible on mouse over of all the rows. I want to hide the tool-tip.

Roman C
  • 48,723
  • 33
  • 63
  • 158
surendarmx
  • 105
  • 1
  • 2
  • 6

2 Answers2

3

That is an example of jqGrid. You can remove titles by jquery in this way:

$(document).ready(function(){
    $("table.ui-jqgrid-btable td").each(function(){
         $(this).removeAttr("title");
    });
});
hamed
  • 7,681
  • 13
  • 50
  • 104
0

Found a helpful link that worked for me. Thanks to Palash Mondal.

http://burnignorance.com/javascript-performance-tips/hide-all-tool-tips-in-jqgrid/

Add this: cmTemplate: { title: false },

user2347528
  • 550
  • 1
  • 8
  • 21