DHTMLX Docs & Samples Explorer

Dimension

Select Window
Dimension (width, height)
Source
<link rel="stylesheet" type="text/css" href="../../codebase/dhtmlxwindows.css">
<link rel="stylesheet" type="text/css" href="../../codebase/skins/dhtmlxwindows_dhx_skyblue.css">
<script src="../../codebase/dhtmlxcommon.js"></script>
<script src="../../codebase/dhtmlxwindows.js"></script>
 
<script src="../../codebase/dhtmlxcontainer.js"></script>
 
<div>
<table>
    <tr>
        <td style="padding-right: 10px;">Select Window</td>
        <td>
            <select id="sel">
                <option value="w1">dhtmlxWindow #1</option>
                <option value="w2">dhtmlxWindow #2</option>
                <option value="w3">dhtmlxWindow #3</option>
            </select>
        </td>
    </tr>
    <tr>
        <td style="padding-right: 10px;">Dimension (width, height)</td>
        <td><input id="win_w" type="text" style="width: 30px;" value="400"> <input id="win_h" type="text" style="width: 30px;" value="300"></td>
    </tr>
    <tr>
        <td colspan="2" align="center" style="padding-top: 10px; padding-bottom: 10px;"><input type="button" value="Update" onclick="updateCurrent();"> <input type="button" value="Show Current" onclick="showCurrent();"></td>
    </tr>
    <tr>
        <td colspan="2">
            <div id="res"></div>
        </td>
    </tr>
</table>
</div>
<div id="winVP" style="position: relative; height: 500px; border: #cecece 1px solid; margin: 10px;"></div>
<script>
var dhxWins,
w1,
w2,
w3;
function doOnLoad() {
    dhxWins = new dhtmlXWindows();
    dhxWins.enableAutoViewport(false);
    dhxWins.attachViewportTo("winVP");
    dhxWins.setImagePath("../../codebase/imgs/");
    w1 = dhxWins.createWindow("w1", 20, 30, 320, 240);
    w1.setText("dhtmlxWindow #1");
    w1.button("close").disable();
    w2 = dhxWins.createWindow("w2", 50, 70, 320, 240);
    w2.setText("dhtmlxWindow #2");
    w2.button("close").disable();
    w3 = dhxWins.createWindow("w3", 480, 210, 320, 240);
    w3.setText("dhtmlxWindow #3");
    w3.button("close").disable();
    w3.setMaxDimension(400, 300);
}
function updateCurrent() {
    var sel = document.getElementById("sel");
    var id = sel.options[sel.selectedIndex].value;
    var w = Number(document.getElementById("win_w").value);
    var h = Number(document.getElementById("win_h").value);
    dhxWins.window(id).setDimension(w, h);
}
function showCurrent() {
    var sel = document.getElementById("sel");
    var id = sel.options[sel.selectedIndex].value;
    var w = sel.options[sel.selectedIndex].firstChild.nodeValue;
    var dim = dhxWins.window(id).getDimension();
    document.getElementById("res").innerHTML = w + " dimension is (" + dim[0] + ", " + dim[1] + ")";
}
</script>