toggle

Toggles the popup element of the widget.

Example - toggle the widget

<div id="actionsheet"></div>
<script>
  var actionsheet = $('#actionsheet').kendoActionSheet({
      title:'Select item',
      items:[
          {
              text: 'Edit Item',
              icon: 'pencil',
              click: onClick
          },
          {
              text: 'Add to Favorites',
              icon: 'heart',
              click: onClick
          },
          {
              text: 'Upload New',
              icon: 'upload',
              click: onClick
          },
          {
              text: 'Close',
              icon: 'cancel',
              group: 'bottom',
              click: (ev) => actionsheet.toggle()
          },
      ]
  }).data('kendoActionSheet');

  function onClick(e) {
      e.preventDefault();
  }

  actionsheet.toggle();
</script>
In this article