actions Array
An array of the action buttons
Example - set the widths of the columns
<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>