open

Opens the popup element of the widget.

Example - open the widget

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

  function onClick(e) {
      e.preventDefault();
      actionsheet.close();
  }
  actionsheet.open();
</script>
In this article