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/editor/creating-a-form/fieldtypes/date.md
+3-16Lines changed: 3 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,28 +4,15 @@ The date picker uses a front-end library called [Pikaday](https://github.com/dbu
4
4
5
5

6
6
7
-
Pikaday date picker can be localised based on the page the Form is rendered on.
7
+
Pikaday date picker can be localized based on the page the Form is rendered on.
8
8
9
9
The date picker displays the picked date in the required locale. Using JavaScript, a hidden field is updated with a standard date format to send to the server for storing record submissions. This avoids the locale mixing up the dates.
10
10
11
11
To achieve localized date, a Razor partial view is included at `/Views/Partials/Forms/Themes/default/DatePicker.cshtml`.
12
12
13
13
The **DatePicker.cshtml** includes the `moment-with-locales.min.js` library to help with the date locale formatting and the appropriate changes to Pikaday to support the locales. If you wish to use a different DatePicker component, edit the **DatePicker.cshtml** file as per your needs.
14
14
15
-
## Configure the Year range
15
+
## Configure the date picker
16
16
17
-
The Date picker has a configuration setting to control the number of years shown in the picker. The default value is 10 years.
17
+
The Date picker has [configuration settings](../../../developer/configuration/README.md#date-picker-field-type-configuration)to control the number of years shown in the picker and the date format.
18
18
19
-
You can configure the settings in the `appSettings.json` file:
20
-
21
-
```json
22
-
"Forms": {
23
-
"FieldTypes": {
24
-
"DatePicker": {
25
-
"DatePickerYearRange": 10
26
-
}
27
-
}
28
-
}
29
-
```
30
-
31
-
Update `DatePickerYearRange` to a higher number (for example: 100) to increase the numbers of years available in the Date picker.
Copy file name to clipboardExpand all lines: 13/umbraco-forms/release-notes.md
+10Lines changed: 10 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,18 +19,28 @@ This section contains the release notes for Umbraco Forms 13 including all chang
19
19
20
20
#### [**13.3.0-rc1**](https://github.com/umbraco/Umbraco.Forms.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F13.3.0)**To Be Confirmed**
21
21
22
+
##### Multi-step forms
23
+
22
24
The 13.3 release of Forms contains features that can improve the user experience of completing multi-page forms.
23
25
24
26
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
27
26
28
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
29
30
+
##### Ship themes in Razor Class Libraries
31
+
28
32
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).
29
33
34
+
##### Date picker field type
35
+
30
36
We've also made a couple of updates to the date picker field type. The format for the field can now be provided in configuration [#1276](https://github.com/umbraco/Umbraco.Forms.Issues/issues/1276). And you can now override and localize the aria label provided for assistive technologies such as screen readers [https://github.com/umbraco/Umbraco.Forms.Issues/issues/1082](https://github.com/umbraco/Umbraco.Forms.Issues/issues/1082).
31
37
38
+
##### Finer grained entries permissions
39
+
32
40
To allow finer control over editor permissions, we've introduced a "delete entries" setting available on users and user groups. Thus you can now give editors explicit permissions to view, edit or delete entries [#1303](https://github.com/umbraco/Umbraco.Forms.Issues/issues/1303).
33
41
42
+
##### Other
43
+
34
44
Other bug fixes included in the release:
35
45
36
46
* Fix issue with single checkbox triggering a condition on a field on a subsequent page [#1304](https://github.com/umbraco/Umbraco.Forms.Issues/issues/1304).
Copy file name to clipboardExpand all lines: 14/umbraco-forms/editor/creating-a-form/fieldtypes/date.md
+3-16Lines changed: 3 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,28 +4,15 @@ The date picker uses a front-end library called [Pikaday](https://github.com/dbu
4
4
5
5

6
6
7
-
Pikaday date picker can be localised based on the page the Form is rendered on.
7
+
Pikaday date picker can be localized based on the page the Form is rendered on.
8
8
9
9
The date picker displays the picked date in the required locale. Using JavaScript, a hidden field is updated with a standard date format to send to the server for storing record submissions. This avoids the locale mixing up the dates.
10
10
11
11
To achieve localized date, a Razor partial view is included at `/Views/Partials/Forms/Themes/default/DatePicker.cshtml`.
12
12
13
13
The **DatePicker.cshtml** includes the `moment-with-locales.min.js` library to help with the date locale formatting and the appropriate changes to Pikaday to support the locales. If you wish to use a different DatePicker component, edit the **DatePicker.cshtml** file as per your needs.
14
14
15
-
## Configure the Year range
15
+
## Configure the date picker
16
16
17
-
The Date picker has a configuration setting to control the number of years shown in the picker. The default value is 10 years.
17
+
The Date picker has [configuration settings](../../../developer/configuration/README.md#date-picker-field-type-configuration)to control the number of years shown in the picker and the date format.
18
18
19
-
You can configure the settings in the `appSettings.json` file:
20
-
21
-
```json
22
-
"Forms": {
23
-
"FieldTypes": {
24
-
"DatePicker": {
25
-
"DatePickerYearRange": 10
26
-
}
27
-
}
28
-
}
29
-
```
30
-
31
-
Update `DatePickerYearRange` to a higher number (for example: 100) to increase the numbers of years available in the Date picker.
Copy file name to clipboardExpand all lines: 14/umbraco-forms/release-notes.md
+18Lines changed: 18 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,24 +20,42 @@ This section contains the release notes for Umbraco Forms 14 including all chang
20
20
21
21
#### [**14.2.0-rc1**](https://github.com/umbraco/Umbraco.Forms.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F14.2.0)**To Be Confirmed**
22
22
23
+
##### Multi-step forms
24
+
23
25
The 14.2 release of Forms contains features that can improve the user experience of completing multi-page forms.
24
26
25
27
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
28
27
29
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
30
31
+
##### Form picker enhancements
32
+
29
33
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 only by individual forms.
30
34
31
35
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
36
37
+
##### Ship themes in Razor Class Libraries
38
+
33
39
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
40
41
+
##### Date picker field type
42
+
35
43
We've also made a couple of updates to the date picker field type. The format for the field can now be provided in configuration [#1276](https://github.com/umbraco/Umbraco.Forms.Issues/issues/1276). And you can now override and localize the aria label provided for assistive technologies such as screen readers [https://github.com/umbraco/Umbraco.Forms.Issues/issues/1082](https://github.com/umbraco/Umbraco.Forms.Issues/issues/1082).
36
44
45
+
##### Umbraco documents prevalue source type
46
+
47
+
When creating a prevalue source based on Umbraco documents, you can now select custom properties for the value or caption. Previously you had a choice of the content item's `Id`, `Key` or `Name`. We've extended this to allow the selection of any properties defined on the selected document type [#1195](https://github.com/umbraco/Umbraco.Forms.Issues/issues/1195).
48
+
49
+
##### Finer grained entries permissions
50
+
37
51
To allow finer control over editor permissions, we've introduced a "delete entries" setting available on users and user groups. Thus you can now give editors explicit permissions to view, edit or delete entries [#1303](https://github.com/umbraco/Umbraco.Forms.Issues/issues/1303).
38
52
53
+
##### Backoffice localization
54
+
39
55
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).
40
56
57
+
##### Other
58
+
41
59
Other bug fixes included in the release:
42
60
43
61
* Reverted entry list to display most recent first.
Copy file name to clipboardExpand all lines: 15/umbraco-forms/editor/creating-a-form/fieldtypes/date.md
+3-16Lines changed: 3 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,28 +4,15 @@ The date picker uses a front-end library called [Pikaday](https://github.com/dbu
4
4
5
5

6
6
7
-
Pikaday date picker can be localised based on the page the Form is rendered on.
7
+
Pikaday date picker can be localized based on the page the Form is rendered on.
8
8
9
9
The date picker displays the picked date in the required locale. Using JavaScript, a hidden field is updated with a standard date format to send to the server for storing record submissions. This avoids the locale mixing up the dates.
10
10
11
11
To achieve localized date, a Razor partial view is included at `/Views/Partials/Forms/Themes/default/DatePicker.cshtml`.
12
12
13
13
The **DatePicker.cshtml** includes the `moment-with-locales.min.js` library to help with the date locale formatting and the appropriate changes to Pikaday to support the locales. If you wish to use a different DatePicker component, edit the **DatePicker.cshtml** file as per your needs.
14
14
15
-
## Configure the Year range
15
+
## Configure the date picker
16
16
17
-
The Date picker has a configuration setting to control the number of years shown in the picker. The default value is 10 years.
17
+
The Date picker has [configuration settings](../../../developer/configuration/README.md#date-picker-field-type-configuration)to control the number of years shown in the picker and the date format.
18
18
19
-
You can configure the settings in the `appSettings.json` file:
20
-
21
-
```json
22
-
"Forms": {
23
-
"FieldTypes": {
24
-
"DatePicker": {
25
-
"DatePickerYearRange": 10
26
-
}
27
-
}
28
-
}
29
-
```
30
-
31
-
Update `DatePickerYearRange` to a higher number (for example: 100) to increase the numbers of years available in the Date picker.
0 commit comments