Cell tooltip in SlickGrid
Posted
by Misha Moroshko
on Stack Overflow
See other posts from Stack Overflow
or by Misha Moroshko
Published on 2010-05-06T03:34:05Z
Indexed on
2010/05/06
3:38 UTC
Read the original article
Hit count: 613
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 !
© Stack Overflow or respective owner