Input Position (x,y)
Input Size (width, height)
Input Header Text
Extended Features
Show Header Icon
Allow Resizing
Allow Moving
Allow Parking
Disable Closing
Show "Help" Button
Show "Stick" Button
<head> <link rel="stylesheet" type="text/css" href="../../codebase/dhtmlxwindows.css"> <link rel="stylesheet" type="text/css" href="../../codebase/skins/dhtmlxwindows_dhx_blue.css"> <script src="../../codebase/dhtmlxcommon.js"></script> <script src="../../codebase/dhtmlxwindows.js"></script> </head> <script> var dhxWins = new dhtmlXWindows(); ... var win = dhxWins.createWindow(id, x, y, width, height); win.setText(text); // extended features win.clearIcon(); // hide icon win.denyResize(); // deny resizing win.denyMove(); // deny moving win.denyPark(); // deny parking win.button("close").disable(); // disable "close" button win.button("help").show(); // show "help" button win.button("stick").show(); // show "stick" button </script>