Currently I have such code
<tr class="k-alt" data-bind="event: { mouseover: function(data, event)
{ $root.showPopover(IsDeleted(), event) }}">
and such implementation cause tooltip blinking, because mouseover fires for each inner element of 'tr'
<tr class="k-alt" data-bind="event: { mouseenter: function(data, event)
{ $root.showPopover(IsDeleted(), event) }}">
If I use here mouseenter knockout doesn't realize that event. How can I get rid of blinking?
About
mouseenter
So if you have jQuery, you can use
mouseenter
.