height Number | String

    Specifies the height of the Window.

    Example

    Open In Dojo
    <div id="dialog"></div>
    <script>
    $("#dialog").kendoWindow({
      height: 400
    });
    </script>

    Example - specifying the height of the Window in percent

    Open In Dojo
    <div id="dialog"></div>
    <script>
    $("#dialog").kendoWindow({
      height: "50%"
    });
    </script>
    In this article