deactivate
Fired when the widget is closed.
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" }
],
deactivate: function(e) {
/* The result can be observed in the DevTools(F12) console of the browser. */
console.log("ActionSheet deactivated");
}
}).data("kendoActionSheet").open();
</script>
In this article