Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions 13/umbraco-forms/editor/creating-a-form/form-settings.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ To access the Form Settings:

1. Navigate to the **Forms** section.
2. Open a Form you wish to customize.
3. Click **Settings** in the top-right corner of the screen.
3. Click **Settings** in the top-right corner of the screen.

![Form settings dialog](../../../../10/umbraco-forms/editor/creating-a-form/images/FormSettings.png)
![Form settings dialog](images/FormSettings.png)

## Settings Options

Expand All @@ -20,25 +20,25 @@ By default, all submitted records are saved in the database. This option allows

Disabling this option will prevent database records from being stored, but any file uploads made as part of the form submission will still be retained. If you do not want the files to be stored, ensure that any process or method used to process, move, or copy them to a different location also removes the file.

![Form settings Store Records](../../../../10/umbraco-forms/editor/creating-a-form/images/Store-Records.png)
![Form settings Store Records](images/Store-Records.png)

### Captions

Customize the labels of the **Submit**, **Next**, and **Previous** buttons used in your Form.

![Form settings stylesheet](../../../../10/umbraco-forms/editor/creating-a-form/images/FormSettingsCaptions-v9.png)
![Form settings stylesheet](images/FormSettingsCaptions-v9.png)

### Styling

Set a stylesheet to give your Form custom styling. You have an option to disable the default styling. Enabling the **Disable default stylesheet** option will prevent a default stylesheet to be added to the pages where the Form is placed.

![Form settings stylesheet](../../../../10/umbraco-forms/editor/creating-a-form/images/FormSettingsStyling.png)
![Form settings stylesheet](images/FormSettingsStyling.png)

### Validation

Define a message that is displayed when a field is mandatory, when a value is not supplied, or when the value is invalid.

![Form settings validation](../../../../10/umbraco-forms/editor/creating-a-form/images/FormSettingsValidation.png)
![Form settings validation](images/FormSettingsValidation.png)

The following Validations are available:

Expand Down Expand Up @@ -79,7 +79,7 @@ These options will only be available if [the feature is configured for display](

Enabling this feature allows the moderator to manage the approval status of a form. This can be used in a number of scenarios. For example, if the form submission will be publicly shown, you can control which are published.

![Form settings Moderation](../../../../10/umbraco-forms/editor/creating-a-form/images/FormSettingsModeration.png)
![Form settings Moderation](images/FormSettingsModeration.png)

### Fields displayed

Expand All @@ -95,4 +95,4 @@ To help protect site visitor privacy, rules can be configured in this section fo

A background service that carries out the actual removal of records needs to be [enabled in configuration](../../developer/configuration/#scheduledrecorddeletion). If that is not running, a notification will be displayed.

![Form settings Date Retentions](../../../../13/umbraco-forms/.gitbook/assets/FormSettingsDataRetention.png)
![Form settings Date Retentions](images/FormSettingsDataRetention.png)
6 changes: 1 addition & 5 deletions 13/umbraco-forms/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,6 @@ Forms allows you to make a copy of a form to use as a starting point for a new o

We've also resolved an edge case around copying a form. It's possible to [define workflows as mandatory](./developer/extending/customize-default-workflows.md#setting-a-mandatory-default-workflow). Copying the form without workflows excludes the desired workflow. You would have a form that didn't contain the workflow you wanted to be included on all. This has been tightened up now and mandatory workflows will always be assigned to the copied form [#1331](https://github.com/umbraco/Umbraco.Forms.Issues/issues/1331).

#### Form picker enhancements

In the 14.2 release we enhanced the [form picker property editors](./developer/property-editors.md). We introduced support for restriction of which forms can be selected by folder rather than only by individual forms. This has now been backported to Forms 13 [#891](https://github.com/umbraco/Umbraco.Forms.Issues/issues/891).

#### File upload validation messages

Previously the validation messages presented on the website front end when uploading files were hardcoded and always provided in English. We've added settings now to the "File Upload" field type allowing you to customize these. Dictionary keys can be used in order to provide the information in the user's preferred language [#1327](https://github.com/umbraco/Umbraco.Forms.Issues/issues/1327).
Expand Down Expand Up @@ -174,7 +170,7 @@ Please ensure to check the rendering of these features on website forms after th
* Added setting option for single and multiple choice fields to allow for vertical or horizontal display [#1218](https://github.com/umbraco/Umbraco.Forms.Issues/issues/1218).
* Added new setting type for multiple text strings [#1217](https://github.com/umbraco/Umbraco.Forms.Issues/issues/1217)
* Added validation to prevent users defining an email workflow that allows the form's sender email to be defined as that entered by the user [#1210](https://github.com/umbraco/Umbraco.Forms.Issues/issues/1210).
* Allowed for the provision of additional data when rendering and submitting forms. When provided it will be used as a source for ["magic string" replacements](./magic-strings.md). The data will be associated with the created record and made available for custom logic and update within workflows. [#578](https://github.com/umbraco/Umbraco.Forms.Issues/issues/578).
* Allowed for the provision of additional data when rendering and submitting forms. When provided it will be used as a source for ["magic string" replacements](./developer/magic-strings.md). The data will be associated with the created record and made available for custom logic and update within workflows. [#578](https://github.com/umbraco/Umbraco.Forms.Issues/issues/578).
* Added details of workflow type to edit workflow dialog [#1183](https://github.com/umbraco/Umbraco.Forms.Issues/issues/1183).
* Removed an inline prevalue editor that wasn't functional but could surface it's UI when creating forms from templates [#1230](https://github.com/umbraco/Umbraco.Forms.Issues/issues/1230).
* Ensured local links are parsed when HTML fields are returned in the delivery API results for form definitions [#1227](https://github.com/umbraco/Umbraco.Forms.Issues/issues/1227).
Expand Down
2 changes: 1 addition & 1 deletion 13/umbraco-forms/tutorials/creating-a-contact-form.md
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ In the next couple of steps, we will add some additional configuration required

When you inserted the form in the previous step, you will notice an error message in the reCAPTCHA field. You need to update the configuration to include a value in the `appsettings.json` file.

To configure the reCAPTCHA value, see the [reCAPTCHA configuration](../../developer/configuration/README.md#recaptcha-v2-field-type-configuration) article.
To configure the reCAPTCHA value, see the [reCAPTCHA configuration](../developer/configuration/README.md#recaptcha-v2-field-type-configuration) article.

### Configuring Simple Mail Transfer Protocol (SMTP)

Expand Down