actions.iconClass String
The CSS class that will be added to the icon element inside the button.
Example - set the iconClass
<span id="target">
Some Content
</span>
<script>
$(document).ready(function() {
$("#target").kendoPopover({
showOn: "click",
header: "Header text",
body: "Content description",
actionsLayout: "center",
actions: [{ text: "refresh", icon: "arrow-rotate-cw", iconClass: "refresh-icon" }, { icon: "pencil", iconClass: "edit-icon" }]
});
});
</script>