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

How to hide the tool-tip in struts2 jqgrid?

我正在使用,

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

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

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

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

找到对我有用的 link。感谢 Palash Mondal。

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

添加:cmTemplate: { title: false },