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
  • 49,761
  • 33
  • 66
  • 176
surendarmx
  • 125
  • 1
  • 2
  • 7

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,939
  • 15
  • 60
  • 114
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
  • 580
  • 1
  • 8
  • 22