Data Components

Read more about Data components below:

Data components are fields that manipulate the way Data is presented, saved, and organized.

Hidden

The Hidden component is used to include data in a form that is not visible to users but is submitted with the form data. It's often used for purposes such as storing metadata, user information, or default values that should not be modified or seen by the user. While there is no front-end widget or display for hidden components, the component will be visible within the form builder to access the component settings where data calculations and logic can be configured. These calculations or logic can be utilized to facilitate more advanced workflows on your form or application.

There are no unique settings for the Hidden component

Container

A Container is a hidden wrapper that is used to group other form components together within a form. What makes the Container unique to the other Layout components is how it stores component data. The components inside the Container are grouped into an object under the Container's API Property key and are saved within the metadata structure of the submission. This feature is particularly useful for creating more complex objects and data sets within your form.

There are no unique settings for the Container component

Data Map

A Data Map component allows users to create key/value pairs. Both the key and the value fields can get the values while filling out the form. New pairs can be added to the form by the 'Add Another' button and removed by the 'X' (Remove Row) button.

The Key component cannot be changed and will always be a Text Field. The Value component can be changed from the default Text Field to any other component (e.g. Text Area, Number, Checkbox etc.).

Label for Key Column: A label text for a Key column. If left empty, the 'Key' label will be used by default.

Disable Adding / Removing Rows: Hides the 'Add Another' and the 'Remove Row' buttons.

Show Key Column Before Value: Makes the Key column show before the Value column. If unchecked, the Value column will show first.

Add Another Text: Sets the text of the 'Add Another' button.

Data Grid

Data Grids allow users to add a grouping of components on a line item grid. Users can then add multiple rows of the component grouping inside the Data Grid. Additionally, any number of grids can be added within a form, which is especially useful when needing the ability to add or duplicate multiple fieldsets.

Disable Adding / Removing Rows: Hides the 'Add Another' and the 'Remove Row' buttons.

Conditional Add Button: Specify a condition when the 'Add Button' will be displayed.

Allow Reorder: When set, the user can reorder the Data Grid rows.

Add Another Text: Sets the text of the 'Add Another' button.

Add Another Position: Allows you to specify a position for the 'Add Another' button with respect to the Data Grid. The button can be at the top of the Data Grid, at the bottom, or in both places at one.

Allow Reorder: Allows reordering rows by dragging and dropping them.

Equal Column Width: Makes the column sizes be equal in width.

Enable Row Groups: Allows separating Data Grid rows into groups. You can add groups, specify their labels, select a number of rows that will be in certain groups and delete the groups. It's helpful if you want to set a specific number of rows in the Data Grid and separate them by groups (see an example below).

Hide Group on Header Click: Makes the group header clickable. When clicked, the entire group will collapse. When clicked again, it expands and shows the hidden rows.

Initialize Empty: Hides all visible rows when initialized.

Edit Grid

The Edit Grid replicates a table-like structure when it comes to the capture and display of form data. Users can add multiple components inside the Edit Grid. Additionally, any number of grids can be added within a form, which is especially useful when needing the ability to add or duplicate multiple fieldsets. There is also flexibility in how the Edit Grid data rows are saved and displayed to the end user.

Open First Row When Empty: When the form is initially loaded, an initial row is opened for the user to fill out. Please note that when this setting is checked, the row must be saved to submit the form, even if left empty.

Disable Adding / Removing Rows: Hides the 'Add Another' and the 'Remove Row' buttons. Use this setting

Display Edit Grid as Table: Uses the Table template for rendering the Data Grid.

Conditional Add Button: This gives a possibility to specify a condition when the 'Add Button' will be displayed.

Header, Row, and Footer Templates: Customize the grid to how you see fit using the Javascript Lodash library. Within the Template section of the component settings, users can modify what type of components are displayed within the saved grid row along with the header/footer. By default, the templates will output all fields within the editgrid when a row is saved.

See the Field Examples tab for code and form examples.

Add Another Text: Sets the text of the 'Add Another' button.

Display As Modal: Shows up the form layout to add or edit a data entry in a modal view.

Save Row Text: Sets the text of the 'Save Row' button.

Remove Row Text: Sets the text of the 'Remove Row' button.

Last updated