Spacer
This item takes space on the form and is used for aligning controls.
Related sample: Form. All controls
Adding Spacer
You can easily add a Spacer control during initialization of a form:
const form = new dhx.Form("form_container", {
rows: [
{
type: "input",
label: "Name",
name: "name"
},
{
type: "spacer",
name: "spacer"
},
{
type: "input",
label: "Email",
name: "email"
}
]
});
Properties
View the full list of configuration properties of the Spacer control.
Working with Spacer
You can manipulate a Spacer control by using methods or events of the object returned by the getItem() method.
For example, you can hide the control:
const value = form.getItem("spacer").hide();
Methods
Check the full list of methods of the Spacer control.