actionsLayout String
(default: "center")
A value indicating how the actions buttons will be positioned. Possible values are:
start
center
between
around
evenly
stretch
Example - position items
<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>