Form

In Lowcoder, the Form component serves as a container that organizes and manages input elements for user data collection. It streamlines the process of gathering and handling user inputs by grouping related fields together.

Key Features :

  1. Input Components: Lowcoder's Form supports various input types, including text inputs, number inputs, option lists, radio buttons and other allowing for versatile data collection methods.

  2. Layout Consistency: To enhance readability and user experience, maintain uniform input field lengths and arrange them in a single column. This approach ensures a clear and organised form structure.

  3. User Feedback Mechanisms: Incorporate confirmation modals before form submission to prevent unintended actions. Additionally, implement notifications to inform users about the success or failure of their submissions, providing immediate feedback.

  4. Input Reset Options: After a successful submission, you can configure the Form to clear input fields automatically, facilitating subsequent entries. Alternatively, retain input values if users are likely to submit similar data consecutively.

  5. Event Handlers: The Form component supports various event handlers, such as 'Submit', allowing you to define specific actions triggered by user interactions, enhancing the form's interactivity and functionality.

  6. Generate Form through Data Source: Forms can be generated using an already created Data Source. The process to create a Form through a Data Source is explained in the following demo :

Generating a Form using a Data Source

Component Playground

On Component Playground, you can interact with the Form component and explore it's Properties, Events and Methods. Play with different Styling properties to see the effect on the Form component.

Component Auto-Docs

In the Auto-Docs of Form component, we have shown how to use different properties of the Form component. It also includes the Styling properties of the Form component.

Properties of the Form

These properties are accessible in {{ }} notations, as well as in JavaScript Queries.

Property Name
Type
Description

data

Object

The JSON data of the Form component i.e, the components present inside the Form component.

disabled

Boolean

Returns True or False based on whether the Form component is disabled or not

hidden

Boolean

Returns True or False based on whether the Form component is hidden or not

invalid

Boolean

Returns True or False based on whether the Form component is invalid or not

loading

Boolean

Returns True or False based on whether the Form component is loading or not

Events

Events give you the ability to trigger further actions (with Event-Handlers).

Event Name
Description

Submit

When a User "submits" a form

Methods

You have the capability to engage with components via their respective methods, which can be accessed by their designated names within any segment where JavaScript is utilized. Additionally, these components can be activated through the 'Control Component' action, which is triggered in response to specific events.

setData() :

form1.setData() method sets the Form's data property, which fills up all the components that are present/added into the Form component. This method takes Object as an argument. For example, for a Form having an input field, a number input field and a TextArea component, following code will set the Data of the Form component.

form1.setData({
  input1 : "John",
  numberInput1 : 25,
  textArea1: "Hello, I am John, 25 years old"
});

Here, in the above code, "input1" refers to key/id of the Input field.

clear() :

form1.clear() clears the Form's data property and empties the Form component.

form1.clear();

reset() :

form1.reset() method resets the Form's data property to the default value of the Form component.

form1.reset();

Last updated

Was this helpful?