width Number | String
Specifies the width of the Window.
Example
<div id="dialog"></div>
<script>
$("#dialog").kendoWindow({
width: 400
});
</script>
Example - specifying the width of the Window in percentage points
<div id="dialog"></div>
<script>
$("#dialog").kendoWindow({
width: "50%"
});
</script>