Unload





</> Source
<!DOCTYPE html>
<html>
<head>
	<title>Unload</title>
	<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
	<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
	<link rel="stylesheet" type="text/css" href="../../../codebase/fonts/font_roboto/roboto.css"/>
	<link rel="stylesheet" type="text/css" href="../../../codebase/dhtmlx.css"/>
	<script src="../../../codebase/dhtmlx.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>
</head>
<body onload="initForm();">
	<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>
</body>
</html>

Documentation

Check documentation to learn how to use the components and easily implement them in your applications.