From ae80fd6d126599bf9cbc3e112dec0fb48608c04b Mon Sep 17 00:00:00 2001 From: Vincent Caron Date: Mon, 21 Oct 2024 08:39:19 +0200 Subject: [PATCH 1/3] Rename listview.md to collectionview.md and update its terminology --- 14/umbraco-cms/SUMMARY.md | 2 +- .../collectionview.md | 110 ++++++++++++++++++ .../listview.md | 110 ------------------ 3 files changed, 111 insertions(+), 111 deletions(-) create mode 100644 14/umbraco-cms/fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/collectionview.md delete mode 100644 14/umbraco-cms/fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/listview.md diff --git a/14/umbraco-cms/SUMMARY.md b/14/umbraco-cms/SUMMARY.md index 11e533bb15b..e7b09f965b8 100644 --- a/14/umbraco-cms/SUMMARY.md +++ b/14/umbraco-cms/SUMMARY.md @@ -44,6 +44,7 @@ * [Property Editors](fundamentals/backoffice/property-editors/README.md) * [Built-in Property Editors](fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/README.md) * [Checkbox List](fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/checkbox-list.md) + * [Collection View](fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/collectionview.md) * [Color Picker](fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/color-picker.md) * [Content Picker](fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/content-picker.md) * [Document Picker](fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/document-picker.md) @@ -55,7 +56,6 @@ * [File Upload](fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/file-upload.md) * [Image Cropper](fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/image-cropper.md) * [Label](fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/label.md) - * [List View](fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/listview.md) * [Markdown Editor](fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/markdown-editor.md) * [Media Picker](fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/media-picker-3.md) * [Member Group Picker](fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/member-group-picker.md) diff --git a/14/umbraco-cms/fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/collectionview.md b/14/umbraco-cms/fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/collectionview.md new file mode 100644 index 00000000000..1ac6d82f4df --- /dev/null +++ b/14/umbraco-cms/fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/collectionview.md @@ -0,0 +1,110 @@ +# Collection View + +`Alias: Umbraco.ListView` + +`Returns: IEnumerable` + +**Collection View** display a collection of categories when it is enabled on a Document Type that has children. + +![Collection view example](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/listview.png) + +## Enable collection view + +If enabled, editors will be able to see multiple children from a collection on a content node that has children. When not enabled, no collection will be shown and all children will be shown in the Content Tree. + +![Enable Collection view example](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/enable-listview.png) + +## Settings + +![Collection view settings example](/14/umbraco-cms/fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/images/list-view-settings.png) + + +### Page Size + +Defines how many child content nodes you want to see per page. This will limit how many content items you will see in your collection. If you set it to 5, then only 5 content items will be shown in the collection. + +### Order By + +Will sort your collection by the selection you choose in the dropdown. By default it selects "Last edited" and you get the following three columns: + +* **Last edited** - When the content node was last edited and saved. +* **Name** - Name of the content node(s). +* **Created by** - This is the user who the content node was created by. + +You can add more sorting to this collection by adding more datatypes to the columns in the "Columns Displayed" section. + +### Order Direction + +You can select order of the content nodes displayed, "Acsending" or "Descending". The order is affected by the "Order By" selection. + +### Columns Displayed + +It is possible to add more columns to the collection, via adding the properties through the dropdown. These properties are based on the Data Types which are used by the Document Type. It will show up in the dropdown by its alias and not the name on the property. + +![Collection view property example](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/listview-property.png) ![Collection view property example](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/listview-property-dropdown.png) + +Once you have selected a column that you want to display, the next thing you want to do is define what its name should be and what kind of value it should display. You can also move the headers around, re-ordering how the headers should look. This is done by the move icon on the left side of the alias. + +The template section is where you define what kind of value you want to display. The value of the column is in the `value` variable. + +### Layouts + +The collection view comes with two layouts by default. A list and a grid view. These views can be disabled if you are not interested in any of them. + +{% hint style="info" %} +A minimum of one layout needs to be enabled for the collection view to work. +{% endhint %} + +You can also make your own layout and add it to the settings. For example, if you wanted to change the width or length of the grid, you will be able to do so. + +### Bulk Action Permissions + +Select what kind of action is available on the collection view. + +* **Allow bulk publish** - content only +* **Allow bulk unpublish** - content only +* **Allow bulk copy** - content only +* **Allow bulk move** +* **Allow bulk delete** + +### Workspace View icon + +Changes the icon in the backoffice of the collection. By default it will look like the image below. + +![Collection icon example](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/list-icon.png) + +### Workspace View name + +You can change the name of the collection view itself. Default if empty: 'Child Items'. + +### Show Content Workspace View First + +Enable this to show the Content Workspace View by default instead of the Collection's. + +## Content Example + +### Generic field value + +This example uses a generic field on a child item and displays it in the collection. ![Collection view content example email](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/listview-content-example-email-settings.png) + +The `{{ value }}` will take the value of the Email property and display it in the collection, as shown on the image below. + +![Collection view content example email](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/listview-content-example-email.png) + +### Member name + +First, a Member Picker property needs to be present on the content item. In this example, the `child item` has gotten a Member Picker Data Type with the alias of `isAuthor`. + +![Collection view member picker](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/member-picker.png) + +Now that the child item has a member and the value that should be displayed is the name of the picked value, the next step is to reconfigure the template value in the collection view setting. + +![Collection view member picker](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/member-picker-settings.png) + +This will take the value picked up by the member picker. ![Collection view member picker](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/picked-member.png) + +And display it in the collection view. Shown in the example below: ![Collection view member picker](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/list-member-picked.png) + +### Other examples + +![Collection view other examples](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/others.png) ![Collection view other examples](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/others-result.png) diff --git a/14/umbraco-cms/fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/listview.md b/14/umbraco-cms/fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/listview.md deleted file mode 100644 index 83d2db4be72..00000000000 --- a/14/umbraco-cms/fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/listview.md +++ /dev/null @@ -1,110 +0,0 @@ -# List View - -`Alias: Umbraco.Listview` - -`Returns: IEnumerable` - -**List View** display a list of categories when it is enabled on a Document Type that has children. - -![List view example](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/listview.png) - -## Enable list view - -If enabled, editors will be able to see multiple children from a list on a content node that has children. When not enabled, no list will be shown and all children will be shown in the Content Tree. - -![Enable List view example](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/enable-listview.png) - -## Settings - -![List view settings example](/14/umbraco-cms/fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/images/list-view-settings.png) - - -### Page Size - -Defines how many child content nodes you want to see per page. This will limit how many content items you will see in your list. If you set it to 5, then only 5 content items will be shown in the list. - -### Order By - -Will sort your list by the selection you choose in the dropdown. By default it selects "Last edited" and you get the following three columns: - -* **Last edited** - When the content node was last edited and saved. -* **Name** - Name of the content node(s). -* **Created by** - This is the user who the content node was created by. - -You can add more sorting to this list by adding more datatypes to the columns in the "Columns Displayed" section. - -### Order Direction - -You can select order of the content nodes displayed, "Acsending" or "Descending". The order is affected by the "Order By" selection. - -### Columns Displayed - -It is possible to add more columns to the list, via adding the properties through the dropdown. These properties are based on the Data Types which are used by the Document Type. It will show up in the dropdown by its alias and not the name on the property. - -![List view property example](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/listview-property.png) ![List view property example](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/listview-property-dropdown.png) - -Once you have selected a column that you want to display, the next thing you want to do is define what its name should be and what kind of value it should display. You can also move the headers around, re-ordering how the headers should look. This is done by the move icon on the left side of the alias. - -The template section is where you define what kind of value you want to display. The value of the column is in the `value` variable. - -### Layouts - -The list view comes with two layouts by default. A list and a grid view. These views can be disabled if you are not interested in any of them. - -{% hint style="info" %} -A minimum of one layout needs to be enabled for the list view to work. -{% endhint %} - -You can also make your own layout and add it to the settings. For example, if you wanted to change the width or length of the grid, you will be able to do so. - -### Bulk Action Permissions - -Select what kind of action is available on the list view. - -* **Allow bulk publish** - content only -* **Allow bulk unpublish** - content only -* **Allow bulk copy** - content only -* **Allow bulk move** -* **Allow bulk delete** - -### Content app icon - -Changes the icon in the backoffice of the listview. By default it will look like the image below. - -![List icon example](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/list-icon.png) - -### Content app name - -You can change the name of the listview itself. Default if empty: 'Child Items'. - -### Show Content App First - -Enable this to show the content app by default instead of the list view - -## Content Example - -### Generic field value - -This example uses a generic field on a child item and displays it in the list. ![List view content example email](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/listview-content-example-email-settings.png) - -The `{{ value }}` will take the value of the Email property and display it in the list, as shown on the image below. - -![List view content example email](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/listview-content-example-email.png) - -### Member name - -First, a Member Picker property needs to be present on the content item. In this example, the `child item` has gotten a Member Picker Data Type with the alias of `isAuthor`. - -![List view member picker](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/member-picker.png) - -Now that the child item has a member and the value that should be displayed is the name of the picked value, the next step is to reconfigure the template value in the listview setting. - -![List view member picker](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/member-picker-settings.png) - -This will take the value picked up by the member picker. ![List view member picker](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/picked-member.png) - -And display it in the listview. Shown in the example below: ![List view member picker](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/list-member-picked.png) - -### Other examples - -![List view other examples](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/others.png) ![List view other examples](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/others-result.png) From f7206cc880e036c04979330ed6528c8b9e0f3810 Mon Sep 17 00:00:00 2001 From: Vincent Caron Date: Tue, 22 Oct 2024 10:37:41 +0200 Subject: [PATCH 2/3] Rename collectionview.md to collection.md and change "collection view" to "collection" in documentation --- 14/umbraco-cms/SUMMARY.md | 2 +- .../{collectionview.md => collection.md} | 40 +++++++++---------- 2 files changed, 21 insertions(+), 21 deletions(-) rename 14/umbraco-cms/fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/{collectionview.md => collection.md} (56%) diff --git a/14/umbraco-cms/SUMMARY.md b/14/umbraco-cms/SUMMARY.md index e7b09f965b8..03e4cea1fa2 100644 --- a/14/umbraco-cms/SUMMARY.md +++ b/14/umbraco-cms/SUMMARY.md @@ -44,7 +44,7 @@ * [Property Editors](fundamentals/backoffice/property-editors/README.md) * [Built-in Property Editors](fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/README.md) * [Checkbox List](fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/checkbox-list.md) - * [Collection View](fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/collectionview.md) + * [Collection](fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/collection.md) * [Color Picker](fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/color-picker.md) * [Content Picker](fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/content-picker.md) * [Document Picker](fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/document-picker.md) diff --git a/14/umbraco-cms/fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/collectionview.md b/14/umbraco-cms/fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/collection.md similarity index 56% rename from 14/umbraco-cms/fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/collectionview.md rename to 14/umbraco-cms/fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/collection.md index 1ac6d82f4df..412f5380d06 100644 --- a/14/umbraco-cms/fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/collectionview.md +++ b/14/umbraco-cms/fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/collection.md @@ -1,22 +1,22 @@ -# Collection View +# Collection `Alias: Umbraco.ListView` `Returns: IEnumerable` -**Collection View** display a collection of categories when it is enabled on a Document Type that has children. +**Collection** displays a collection of categories when it is enabled on a Document Type that has children. -![Collection view example](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/listview.png) +![Collection example](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/listview.png) -## Enable collection view +## Enable collection If enabled, editors will be able to see multiple children from a collection on a content node that has children. When not enabled, no collection will be shown and all children will be shown in the Content Tree. -![Enable Collection view example](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/enable-listview.png) +![Enable Collection example](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/enable-listview.png) ## Settings -![Collection view settings example](/14/umbraco-cms/fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/images/list-view-settings.png) +![Collection settings example](/14/umbraco-cms/fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/images/list-view-settings.png) ### Page Size @@ -41,7 +41,7 @@ You can select order of the content nodes displayed, "Acsending" or "Descending" It is possible to add more columns to the collection, via adding the properties through the dropdown. These properties are based on the Data Types which are used by the Document Type. It will show up in the dropdown by its alias and not the name on the property. -![Collection view property example](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/listview-property.png) ![Collection view property example](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/listview-property-dropdown.png) +![Collection property example](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/listview-property.png) ![Collection property example](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/listview-property-dropdown.png) Once you have selected a column that you want to display, the next thing you want to do is define what its name should be and what kind of value it should display. You can also move the headers around, re-ordering how the headers should look. This is done by the move icon on the left side of the alias. @@ -49,17 +49,17 @@ The template section is where you define what kind of value you want to display. ### Layouts -The collection view comes with two layouts by default. A list and a grid view. These views can be disabled if you are not interested in any of them. +Collection comes with two layouts by default. A list and a grid view. These views can be disabled if you are not interested in any of them. {% hint style="info" %} -A minimum of one layout needs to be enabled for the collection view to work. +A minimum of one layout needs to be enabled for Collection to work. {% endhint %} You can also make your own layout and add it to the settings. For example, if you wanted to change the width or length of the grid, you will be able to do so. ### Bulk Action Permissions -Select what kind of action is available on the collection view. +Select what kind of action is available on the collection. * **Allow bulk publish** - content only * **Allow bulk unpublish** - content only @@ -75,36 +75,36 @@ Changes the icon in the backoffice of the collection. By default it will look li ### Workspace View name -You can change the name of the collection view itself. Default if empty: 'Child Items'. +You can change the name of the collection itself. Default if empty: 'Child Items'. ### Show Content Workspace View First -Enable this to show the Content Workspace View by default instead of the Collection's. +Enable this to show the Content Workspace View by default instead of the collection's. ## Content Example ### Generic field value -This example uses a generic field on a child item and displays it in the collection. ![Collection view content example email](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/listview-content-example-email-settings.png) +This example uses a generic field on a child item and displays it in the collection. ![Collection content example email](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/listview-content-example-email-settings.png) The `{{ value }}` will take the value of the Email property and display it in the collection, as shown on the image below. -![Collection view content example email](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/listview-content-example-email.png) +![Collection content example email](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/listview-content-example-email.png) ### Member name First, a Member Picker property needs to be present on the content item. In this example, the `child item` has gotten a Member Picker Data Type with the alias of `isAuthor`. -![Collection view member picker](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/member-picker.png) +![Collection member picker](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/member-picker.png) -Now that the child item has a member and the value that should be displayed is the name of the picked value, the next step is to reconfigure the template value in the collection view setting. +Now that the child item has a member and the value that should be displayed is the name of the picked value, the next step is to reconfigure the template value in the collection setting. -![Collection view member picker](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/member-picker-settings.png) +![Collection member picker](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/member-picker-settings.png) -This will take the value picked up by the member picker. ![Collection view member picker](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/picked-member.png) +This will take the value picked up by the member picker. ![Collection member picker](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/picked-member.png) -And display it in the collection view. Shown in the example below: ![Collection view member picker](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/list-member-picked.png) +And display it in the collection. Shown in the example below: ![Collection member picker](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/list-member-picked.png) ### Other examples -![Collection view other examples](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/others.png) ![Collection view other examples](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/others-result.png) +![Collection other examples](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/others.png) ![Collection other examples](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/others-result.png) From a691f67a70be7b609670228a7709e44a3a7b86c4 Mon Sep 17 00:00:00 2001 From: Vincent Caron Date: Tue, 22 Oct 2024 11:14:51 +0200 Subject: [PATCH 3/3] Update sentences based on suggestions and add redirect --- 14/umbraco-cms/.gitbook.yaml | 3 ++- .../built-in-umbraco-property-editors/collection.md | 6 +++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/14/umbraco-cms/.gitbook.yaml b/14/umbraco-cms/.gitbook.yaml index b7aa016250b..f8b276ba564 100644 --- a/14/umbraco-cms/.gitbook.yaml +++ b/14/umbraco-cms/.gitbook.yaml @@ -125,4 +125,5 @@ redirects: customize-the-backoffice/umbraco-package: customizing/umbraco-package.md customize-the-backoffice/workspaces: customizing/workspaces.md fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/block-editor/build-a-custom-view-for-a-block: tutorials/creating-custom-views-for-blocklist.md - extending/packages/types-of-packages: extending/packages/README.md \ No newline at end of file + extending/packages/types-of-packages: extending/packages/README.md + fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/listview: fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/collection.md \ No newline at end of file diff --git a/14/umbraco-cms/fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/collection.md b/14/umbraco-cms/fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/collection.md index 412f5380d06..a4efa4edaab 100644 --- a/14/umbraco-cms/fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/collection.md +++ b/14/umbraco-cms/fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/collection.md @@ -4,7 +4,7 @@ `Returns: IEnumerable` -**Collection** displays a collection of categories when it is enabled on a Document Type that has children. +**Collection** displays a collection of categories when it is enabled on a Document Type with children. ![Collection example](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/listview.png) @@ -43,7 +43,7 @@ It is possible to add more columns to the collection, via adding the properties ![Collection property example](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/listview-property.png) ![Collection property example](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/listview-property-dropdown.png) -Once you have selected a column that you want to display, the next thing you want to do is define what its name should be and what kind of value it should display. You can also move the headers around, re-ordering how the headers should look. This is done by the move icon on the left side of the alias. +Once you have selected a column you want to display, define what its name should be and what kind of value it should display. You can also move the headers around, re-ordering how they should look. This is done by the move icon on the left side of the alias. The template section is where you define what kind of value you want to display. The value of the column is in the `value` variable. @@ -97,7 +97,7 @@ First, a Member Picker property needs to be present on the content item. In this ![Collection member picker](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/member-picker.png) -Now that the child item has a member and the value that should be displayed is the name of the picked value, the next step is to reconfigure the template value in the collection setting. +The child item has a member and the value that should be displayed is the name of the picked value. The next step is to reconfigure the template value in the collection setting. ![Collection member picker](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/member-picker-settings.png)