surendarmx
surendarmx

Reputation: 125

How to hide the tool-tip in struts2 jqgrid?

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.

Upvotes: 1

Views: 317

Answers (2)

user2347528
user2347528

Reputation: 610

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 },

Upvotes: 0

hamed
hamed

Reputation: 8033

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");
    });
});

Upvotes: 3

Related Questions