open

Fires when the ActionSheet is opened.

Example

<div data-role="view">
  <a data-role="button" data-rel="actionsheet" href="#actionsheet">Open</a>
  <ul id="actionsheet" data-role="actionsheet" data-open="onOpen">
    <li><a>Foo</a></li>
    <li><a>Bar</a></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