open
Fired when the widget opens.
The event handler function context (available via the this
keyword) will be set to the widget instance.
Example
<div id="actionsheet"></div>
<script>
$("#actionsheet").kendoActionSheet({
title: "Select action",
items: [
{ text: "Item 1", icon: "folder" },
{ text: "Item 2", icon: "file" }
],
open: function(e) {
/* The result can be observed in the DevTools(F12) console of the browser. */
console.log("ActionSheet opened");
}
}).data("kendoActionSheet").open();
</script>
In this article