jqgrid 过于聪明并将标题应用于我的 td

发布于 2024-12-08 23:48:55 字数 258 浏览 0 评论 0原文

我正在使用 jqgrid 的这个功能:

 tableToGrid("#something", { width: '400', height: 'auto', caption: ''});

这工作正常,但是当我将鼠标悬停在某些东西上时,它会显示与单元格中看到的相同的文本。我真的不想要这个。当我在 Firefox 中查看源时,jqgrid 为我所有的 td 添加了 title 属性。我怎样才能阻止这个?

提前致谢 :)

I am using this function of jqgrid:

 tableToGrid("#something", { width: '400', height: 'auto', caption: ''});

This works fine but when I hover over something, it shows the same text as seen in cell. I don't really want this. When I did viewsource in Firefox, jqgrid added title attribute to all my td's. How can I stop this?

Thanks in advance :)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

计㈡愣 2024-12-15 23:48:55

您使用tableToGrid,因此您更难在文档中找到正确的参数。 答案显示了解决您的问题的方法。如果使用 tableToGrid ,它将如下所示:

tableToGrid("#something", {width: '400', height: 'auto', cmTemplate: {title: false}});

You use tableToGrid, so it's more difficult for you to find the correct parameter in the documentation. The answer shows the way to solve your problem. In case of usage of tableToGrid it will look as following:

tableToGrid("#something", {width: '400', height: 'auto', cmTemplate: {title: false}});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文