Skip to content

Commit 808a30f

Browse files
committed
Added release notes and details for block list labels.
1 parent 51095bf commit 808a30f

File tree

6 files changed

+60
-43
lines changed

6 files changed

+60
-43
lines changed

14/umbraco-forms/SUMMARY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
* [Apply keys and indexes for forms in the database](developer/healthchecks/forms-in-the-database-apply-keys.md)
6666
* [Localization](developer/localization.md)
6767
* [Headless/AJAX Forms](developer/ajaxforms.md)
68-
* [Block List Filters](developer/blocklistfilters.md)
68+
* [Block List Labels](developer/blocklistlabels.md)
6969
* [Field Types](developer/field-types.md)
7070
* [Storing Prevalue Text Files With IPreValueTextFileStorage](developer/iprevaluetextfilestorage.md)
7171

14/umbraco-forms/developer/blocklistfilters.md

Lines changed: 0 additions & 21 deletions
This file was deleted.
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Block List Labels
2+
3+
When working with the Block List editor, [the editor experience is enhanced](https://docs.umbraco.com/umbraco-cms/fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/block-editor/block-list-editor#editor-appearance) by defining a label for the appearance of the Block.
4+
5+
These labels can use [Umbraco Flavored Markdown (UFM)](https://docs.umbraco.com/umbraco-cms/reference/umbraco-flavored-markdown).
6+
7+
An option that allows for display of a forms name - `umbFormName` - is available for use.
8+
9+
It should be rendered as follows, with a reference to the property alias on the block element that uses a form picker.
10+
11+
```
12+
{umbFormName: <property-alias>}
13+
```
14+
15+
If you add a reference to a property containing a form to the block's label, it will render with the form's Id.
16+
17+
For example, assuming a property containing a picked form with an alias of `contactForm`:
18+
19+
```
20+
{=contactForm}
21+
```
22+
23+
By using the markdown as follows, the form's name will be displayed instead.
24+
25+
```
26+
{umbFormName: contactForm}
27+
```

14/umbraco-forms/release-notes.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@ If you are upgrading to a new major version, you can find information about the
1818

1919
This section contains the release notes for Umbraco Forms 14 including all changes for this version.
2020

21+
#### [**14.2.0-rc2**](https://github.com/umbraco/Umbraco.Forms.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F14.2.0) **November 3rd 2024**
22+
23+
* Updated dependency on Umbraco CMS to 14.3.0.
24+
* Added a replacement for the AngularJs [block list label filter we provide for Forms 13](../../13/umbraco-forms/developer/blocklistfilters). The new implementations uses [Umbraco Flavored Markdown (UFM)](https://docs.umbraco.com/umbraco-cms/reference/umbraco-flavored-markdown) and is [documented here](./developer/blocklistlabels.md).
25+
2126
#### [**14.2.0-rc1**](https://github.com/umbraco/Umbraco.Forms.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F14.2.0) **October 25th 2024**
2227

2328
##### Multi-step forms

15/umbraco-forms/developer/blocklistfilters.md

Lines changed: 0 additions & 21 deletions
This file was deleted.
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Block List Labels
2+
3+
When working with the Block List editor, [the editor experience is enhanced](https://docs.umbraco.com/umbraco-cms/fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/block-editor/block-list-editor#editor-appearance) by defining a label for the appearance of the Block.
4+
5+
These labels can use [Umbraco Flavored Markdown (UFM)](https://docs.umbraco.com/umbraco-cms/reference/umbraco-flavored-markdown).
6+
7+
An option that allows for display of a forms name - `umbFormName` - is available for use.
8+
9+
It should be rendered as follows, with a reference to the property alias on the block element that uses a form picker.
10+
11+
```
12+
{umbFormName: <property-alias>}
13+
```
14+
15+
If you add a reference to a property containing a form to the block's label, it will render with the form's Id.
16+
17+
For example, assuming a property containing a picked form with an alias of `contactForm`:
18+
19+
```
20+
{=contactForm}
21+
```
22+
23+
By using the markdown as follows, the form's name will be displayed instead.
24+
25+
```
26+
{umbFormName: contactForm}
27+
```

0 commit comments

Comments
 (0)