open

Fires when the ActionSheet is opened.

    <div data-role="view">
      Open
      <ul id="actionsheet" data-role="actionsheet" data-open="onOpen">
        <li>Foo</li>
        <li>Bar</li>
      </ul>
    </div>


    <script>
      var app = new kendo.mobile.Application();

      function onOpen() {
    /* The result can be observed in the DevTools(F12) console of the browser. */
        console.log("opened");
      }
    </script>

Event Data

e.target jQuery

The invocation target of the ActionSheet.

e.context jQuery

The defined ActionSheet context.

In this article