startButton.iconString
Specifies the icon to be displayed in the start button.
Example
<div id="actionsheet"></div>
<script>
$("#actionsheet").kendoActionSheet({
title: "Select action",
items: [
{ text: "Item 1", icon: "folder" },
{ text: "Item 2", icon: "file" }
],
startButton: {
text: "Start",
icon: "play"
}
}).data("kendoActionSheet").open();
</script>
In this article