0

I would like to run code in the hover event in the kendo-ui splitter.
The list of events for the splitter does not contain hover, mouseenter, leave or any of that sort.

Does someone has an idea how to implement it?

Thanks.

Samuel Caillerie
  • 8,259
  • 1
  • 27
  • 33
Meital
  • 23
  • 4

1 Answers1

0

It depends of what you want to achieve...

If you just want to observe the moves of the splitbars, just bind manually the corresponding event to this bar :

$(".k-splitbar").on("mousemove", yourHandler);
Samuel Caillerie
  • 8,259
  • 1
  • 27
  • 33