fullscreen

Sets whether the adaptive ActionSheet would occupy the entire screen or only the bottom part and have a modal overlay.

Example - make the adaptive widget fullscreen

<div id="actionsheet"></div>
<script>
    var actionsheet = $("#actionsheet").kendoActionSheet({
        adaptive: true,
        title: "Fullscreen actionsheet",
        closeButton: true
    }).getKendoActionSheet();

    actionsheet.fullscreen(true);
    actionsheet.open();
</script>
In this article