如何在struts2 jqgrid中隐藏工具提示?

时间:2015-04-15 10:26:05

标签: jquery struts2 jqgrid tooltip struts2-jquery

我正在使用,

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

展示我的网格。这里的工具提示在所有行的鼠标上都可见。我想隐藏工具提示。

2 个答案:

答案 0 :(得分:3)

这是jqGrid的一个例子。您可以通过以下方式删除jquery的标题:

$(document).ready(function(){
    $("table.ui-jqgrid-btable td").each(function(){
         $(this).removeAttr("title");
    });
});

答案 1 :(得分:0)

找到一个对我有用的有用链接。感谢Palash Mondal。

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

添加:cmTemplate:{title:false},