close

Close the ActionSheet.

Example

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

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

function close() {
  $("#actionsheet").data("kendoMobileActionSheet").close();
}
</script>
In this article