activate

Fired when the widget is opened.

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" }
    ],
    activate: function(e) {
        /* The result can be observed in the DevTools(F12) console of the browser. */
        console.log("ActionSheet activated");
    }
}).data("kendoActionSheet").open();
</script>
In this article
activate
Not finding the help you need?
Contact Support