Absolute Position
Automaticaly check for updates to:
When updates to Firefox are found:
<link rel="stylesheet" type="text/css" href="../../codebase/skins/dhtmlxform_dhx_skyblue.css"> <script src="../../codebase/dhtmlxcommon.js"></script> <script src="../../codebase/dhtmlxform.js"></script> <script></script> <div id="myForm" style="height:220px;"></div>var myForm, formData; function doOnLoad() { formData = [{ type: "settings", position: "absolute", labelWidth: 500, inputWidth: 120 }, { type: "label", label: "Automaticaly check for updates to:", labelTop: 10, labelLeft: 0, inputTop: 10 }, { type: "checkbox", label: "Firefox", checked: true, labelTop: 30, inputTop: 30, labelLeft: 22, list: [{ type: "label", label: "When updates to Firefox are found:", labelTop: 90, labelLeft: -22, inputTop: 90 }, { type: "radio", name: "todo", label: "Ask me what I want to do", checked: true, labelTop: 110, labelLeft: 0, inputTop: 110, inputLeft: -22 }, { type: "radio", name: "todo", label: "Automatically download and install the update", labelTop: 130, labelLeft: 0, inputTop: 130, inputLeft: -22, list: [{ type: "checkbox", label: "Warn me if this will disable any of my add-ons", checked: true, labelTop: 150, labelLeft: 0, inputTop: 150, inputLeft: -22 }] }] }, { type: "checkbox", label: "Installed Add-ons", checked: true, labelTop: 50, labelLeft: 22, inputTop: 50 }, { type: "checkbox", label: "Search Engines", labelTop: 70, labelLeft: 22, inputTop: 70 }]; myForm = new dhtmlXForm("myForm", formData); }