Search code examples
jquerystruts2jqgridtooltipstruts2-jquery

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.


Solution

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