close

Fires when the ActionSheet is closed.

    <div data-role="view">
      Open
      <ul id="actionsheet" data-role="actionsheet" data-close="onClose">
        <li>Foo</li>
        <li>Bar</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