Data
Database Create & Update
If the same form should be used for creating and updating values you can do this using the Submit Values
action two times.
The one for creating is skipped if the id already exists. The one for updating is skipped if the id does not exist.
Saving
All saving methods allow for a selection between formatted and unformatted values.
Database
Choose the DB column to save the data of the form element to.
Variable
Save Data entered to the form element to a variable.
Selection
Select on a field if data is enetered to the form element. You can choose to convert the selection value to a number.
Save to JSON
The value can be saved to a json object for further use in e.g. an ApiCall.
To save as a nested object use the dot notation e.g. car.style.color
would result in saving a value to:
{
"car": {
"style": {
"color": "{value}"
}
}
}
Default Value
A default value for the form element. This value will also be saved to the chosen saving types. You can also choose to update the data of the form element whenever the default value changes by selecting Update on default value change
.
This can be used for automations, prefilled forms and many other use cases.