SlickGrid 中的单元格工具提示
我的 SlickGrid 表格中的某些单元格具有 myClass
类。
我为它们添加了一个工具提示,如下所示:
$(".myClass").hover(// Mouse enters
function(e) {...},
// Mouse leaves
function() {...});
它工作正常,但如果我将表格滚动到底部,然后将其滚动回顶部,工具提示将不再出现。
有人可以建议任何解决方法吗?
谢谢 !
Some cells in my SlickGrid table have myClass
class.
I added a tooltip for them like this:
$(".myClass").hover(// Mouse enters
function(e) {...},
// Mouse leaves
function() {...});
It works fine, but if I scroll the table to the bottom, and then scroll it back to the top, the tooltip does not appear anymore.
Can someone suggest any workaround ?
Thanks !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
单元格、行和项目只是如何获取数据的示例
cell, row and item are just examples for how to get to data
尝试:
如果这不起作用,我猜测
.myClass
已被删除,因此请尝试在每个卷轴中再次添加它......无论哪种方式,请使用
live()
>try:
if that doesn't work, I'm guessing
.myClass
has been remove so try adding it again in every scrolls...either way, use the
live()
Slickgrid 有一个插件,可以为太大而无法在单元格中显示的项目显示工具提示(如果这就是您最终想要做的):
SlickGrid:如何查看长单元格条目的全文?
There's a plugin for Slickgrid that will display tooltips for items that are too big to show in a cell (if that's what you're ultimately looking to do):
SlickGrid: how to view full text for long cell entries?