actions.click Function

A handler function to be called when the action button is clicked

Example - set the click handler

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

<script>
    $(document).ready(function() {
      $("#target").kendoPopover({
        showOn: "click",
        header: "Header text",
        body: "Content description",
        actionsPosition: "center",
        actions: [{ text: "update", click: function(e) { console.log(e.target.text()); }}, { text: "create", click: function(e) { console.log(e.target.text()); }}]
      });
    });
</script>
In this article