startButton.clickFunction
The function that will be executed when the start button is clicked.
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",
click: function(e) {
console.log("Start button clicked");
}
}
}).data("kendoActionSheet").open();
</script>
In this article