Personal Events
dhtmlxWindow #2 has personal "onFocus" event |
dhtmlxWindow #1
dhtmlxWindow #2
dhtmlxWindow #3
dhtmlxWindow #2 has personal "onFocus" event |
<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;">dhtmlxWindow #2 has personal "onFocus" event</td> </tr> <tr> <td> <div id="res" style="height: 250px; overflow: auto;"></div> </td> </tr> </table> </div> <div id="winVP" style="position: relative; height: 500px; border: #cecece 1px solid; margin: 10px;"></div> <script></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", 80, 110, 320, 240); w3.setText("dhtmlxWindow #3"); w3.button("close").disable(); w2.attachEvent("onFocus", doOnFocusWin2); dhxWins.attachEvent("onFocus", doOnFocus); } function doOnFocus(win) { document.getElementById("res").innerHTML += "global \"onFocus\" event was catched<br>"; } function doOnFocusWin2(win) { document.getElementById("res").innerHTML += "personal \"onFocus\" event was catched<br>"; }