showOn String
(default: "mouseenter")
The event on which the Tooltip will be shown.
The supported values are:
mouseenter
click
focus
Example - setting the event on which the Tooltip will be shown
<span id="target" title="Tooltip content">
Click Me
</span>
<script>
$(document).ready(function() {
$("#target").kendoTooltip({
showOn: "click"
});
});
</script>
Example - setting the multiple events on which the Tooltip will be shown
<span id="target" title="Tooltip content">
Click Me
</span>
<script>
$(document).ready(function() {
$("#target").kendoTooltip({
showOn: "click mouseenter"
});
});
</script>