actions.text String

The text displayed in the action button

Example - set the text of the button

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

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