DHTMLX Docs & Samples Explorer

Unload





Source
<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>
var myForm;
 
function initForm() {
    if (myForm)
        return;
    var formData = [{
        type: "settings",
        position: "label-left",
        labelWidth: 100,
        inputWidth: 120
    }, {
        type: "input",
        label: "Login",
        value: "login"
    }, {
        type: "password",
        label: "Password",
        value: "123"
    }, {
        type: "checkbox",
        label: "Remember me",
        checked: true
    }];
    myForm = new dhtmlXForm("myForm", formData);
}
function unloadForm() {
    if (myForm) {
        myForm.unload();
        myForm = null;
    }
 
}
</script> <input type="button" value="Init Form" onclick="initForm();"> <input type="button" value="Unload Form" onclick="unloadForm();"> <br><br><br><br> <div id="myForm" style="height:120px;"></div>