toggleOnClick Boolean(default: false)

Defines a value indicating whether the popover will show/hide only when clicking on the target element.

Note: toggleOnClick is supported only when showOn* is set to click.

Example - setting the height of the Popover

<span id="target">
  Some content
</span>

<script>
  $(document).ready(function() {
    $("#target").kendoPopover({
      showOn: "click",
      toggleOnClick: true,
      template: "Content description"
    });
  });
</script>
In this article