close

Fires when the ActionSheet is closed.

Example

<div data-role="view">
  <a data-role="button" data-rel="actionsheet" href="#actionsheet">Open</a>
  <ul id="actionsheet" data-role="actionsheet" data-close="onClose">
    <li><a>Foo</a></li>
    <li><a>Bar</a></li>
  </ul>
</div>

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

  function onClose() {
/* The result can be observed in the DevTools(F12) console of the browser. */
    console.log("closed");
  }
</script>
In this article