jqgrid 过于聪明并将标题应用于我的 td
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您使用
tableToGrid
,因此您更难在文档中找到正确的参数。 答案显示了解决您的问题的方法。如果使用 tableToGrid ,它将如下所示: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: