You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: 13/umbraco-forms/developer/themes.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -49,7 +49,7 @@ From Forms 13.3 it's possible to do this for custom themes.
49
49
50
50
Firstly you'll create a new Razor Class Library project to hold the theme. You then create the necessary partial views for your theme as usual within `Views\Partials\Forms\Themes\<my-custom-theme>`.
51
51
52
-
You then need to provide the names of the files in your theme via an implementation of `ITheme`. For example, if just overriding a single file, your class would look like this:
52
+
You then need to provide the names of the files in your theme via an implementation of `ITheme`. For example, if only overriding a single file, your class would look like this:
Copy file name to clipboardExpand all lines: 13/umbraco-forms/release-notes.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,11 +21,11 @@ This section contains the release notes for Umbraco Forms 13 including all chang
21
21
22
22
The 13.3 release of Forms contains features that can improve the user experience of completing multi-page forms.
23
23
24
-
We've added the option for [editors to choose to display paging details on the forms](./editor/creating-a-form/form-settings.md#multi-page-forms)). This will allow those completing forms to get a better understanding of progress as well as see details of the pages still to complete. [#281](https://github.com/umbraco/Umbraco.Forms.Issues/issues/281)[#648](https://github.com/umbraco/Umbraco.Forms.Issues/issues/648).
24
+
We've added the option for [editors to choose to display paging details on the forms](./editor/creating-a-form/form-settings.md#multi-page-forms). This will allow those completing forms to get a better understanding of progress as well as see details of the pages still to complete. [#281](https://github.com/umbraco/Umbraco.Forms.Issues/issues/281)[#648](https://github.com/umbraco/Umbraco.Forms.Issues/issues/648).
25
25
26
26
These can be options are enabled and configured on a per-form basis by editors in the form settings section. We also provide a [configuration based toggle for the feature as a whole](./developer/configuration/README.md#enablemultipageformsettings). In this way editors can be given access to use the feature only once the styling or theme is prepared.
27
27
28
-
Forms for several versions now has shipped it's themes and email templates as part of a razor class library for ease of distribution. With this release we make that feature [available to your own custom themes and templates](./developer/themes.md#shipping-themes-in-a-razor-class-library) (or those created by package developers) [#795](https://github.com/umbraco/Umbraco.Forms.Issues/issues/795).
28
+
Forms ships it's themes and email templates as part of a razor class library for ease of distribution. With this release we make that feature [available to your own custom themes and templates](./developer/themes.md#shipping-themes-in-a-razor-class-library) (or those created by package developers) [#795](https://github.com/umbraco/Umbraco.Forms.Issues/issues/795).
Copy file name to clipboardExpand all lines: 14/umbraco-forms/developer/property-editors.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Property Editors
2
2
3
-
When forms are created, editors will want to add them to pages in Umbraco. To do this they need a document type with a property that uses a datatype based on a form picker property editor.
3
+
When forms are created, editors will want to add them to pages in Umbraco. To do this they need a Document Type with a property that uses a datatype based on a form picker property editor.
4
4
5
5
Umbraco Forms provides three variations of a form picker.
Copy file name to clipboardExpand all lines: 14/umbraco-forms/developer/themes.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -50,7 +50,7 @@ From Forms 14.2 it's possible to do this for custom themes.
50
50
51
51
Firstly you'll create a new Razor Class Library project to hold the theme. You then create the necessary partial views for your theme as usual within `Views\Partials\Forms\Themes\<my-custom-theme>`.
52
52
53
-
You then need to provide the names of the files in your theme via an implementation of `ITheme`. For example, if just overriding a single file, your class would look like this:
53
+
You then need to provide the names of the files in your theme via an implementation of `ITheme`. For example, if only overriding a single file, your class would look like this:
Copy file name to clipboardExpand all lines: 14/umbraco-forms/release-notes.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,15 +22,15 @@ This section contains the release notes for Umbraco Forms 14 including all chang
22
22
23
23
The 14.2 release of Forms contains features that can improve the user experience of completing multi-page forms.
24
24
25
-
We've added the option for [editors to choose to display paging details on the forms](./editor/creating-a-form/form-settings.md#multi-page-forms)). This will allow those completing forms to get a better understanding of progress as well as see details of the pages still to complete. [#281](https://github.com/umbraco/Umbraco.Forms.Issues/issues/281)[#648](https://github.com/umbraco/Umbraco.Forms.Issues/issues/648).
25
+
We've added the option for [editors to choose to display paging details on the forms](./editor/creating-a-form/form-settings.md#multi-page-forms). This will allow those completing forms to get a better understanding of progress as well as see details of the pages still to complete. [#281](https://github.com/umbraco/Umbraco.Forms.Issues/issues/281)[#648](https://github.com/umbraco/Umbraco.Forms.Issues/issues/648).
26
26
27
27
These can be options are enabled and configured on a per-form basis by editors in the form settings section. We also provide a [configuration based toggle for the feature as a whole](./developer/configuration/README.md#enablemultipageformsettings). In this way editors can be given access to use the feature only once the styling or theme is prepared.
28
28
29
29
Another improvement if found in the [form picker property editors](./developer/property-editors.md). We now support restriction of which forms can be selected by folder rather than just by individual forms.
30
30
31
31
A second "form details picker" is also available, allowing editors the option of selecting the form, theme and redirect via a single property editor.
32
32
33
-
Forms for several versions now has shipped it's themes and email templates as part of a razor class library for ease of distribution. With this release we make that feature [available to your own custom themes and templates](./developer/themes.md#shipping-themes-in-a-razor-class-library) (or those created by package developers) [#795](https://github.com/umbraco/Umbraco.Forms.Issues/issues/795).
33
+
Forms ships it's themes and email templates as part of a razor class library for ease of distribution. With this release we make that feature [available to your own custom themes and templates](./developer/themes.md#shipping-themes-in-a-razor-class-library) (or those created by package developers) [#795](https://github.com/umbraco/Umbraco.Forms.Issues/issues/795).
34
34
35
35
Finally thanks to a kind contribution from [Erik-Jan Westendorp](https://github.com/erikjanwestendorp) the backoffice is now translated into Dutch [#1264](https://github.com/umbraco/Umbraco.Forms.Issues/issues/1264).
Copy file name to clipboardExpand all lines: 15/umbraco-forms/developer/property-editors.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Property Editors
2
2
3
-
When forms are created, editors will want to add them to pages in Umbraco. To do this they need a document type with a property that uses a datatype based on a form picker property editor.
3
+
When forms are created, editors will want to add them to pages in Umbraco. To do this they need a Document Type with a property that uses a datatype based on a form picker property editor.
4
4
5
5
Umbraco Forms provides three variations of a form picker.
Copy file name to clipboardExpand all lines: 15/umbraco-forms/developer/themes.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -50,7 +50,7 @@ It's also possible to do this for custom themes.
50
50
51
51
Firstly you'll create a new Razor Class Library project to hold the theme. You then create the necessary partial views for your theme as usual within `Views\Partials\Forms\Themes\<my-custom-theme>`.
52
52
53
-
You then need to provide the names of the files in your theme via an implementation of `ITheme`. For example, if just overriding a single file, your class would look like this:
53
+
You then need to provide the names of the files in your theme via an implementation of `ITheme`. For example, if only overriding a single file, your class would look like this:
0 commit comments