Skip to content

Commit f7206cc

Browse files
committed
Rename collectionview.md to collection.md and change "collection view" to "collection" in documentation
1 parent ae80fd6 commit f7206cc

File tree

2 files changed

+21
-21
lines changed

2 files changed

+21
-21
lines changed

14/umbraco-cms/SUMMARY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
* [Property Editors](fundamentals/backoffice/property-editors/README.md)
4545
* [Built-in Property Editors](fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/README.md)
4646
* [Checkbox List](fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/checkbox-list.md)
47-
* [Collection View](fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/collectionview.md)
47+
* [Collection](fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/collection.md)
4848
* [Color Picker](fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/color-picker.md)
4949
* [Content Picker](fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/content-picker.md)
5050
* [Document Picker](fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/document-picker.md)
Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
1-
# Collection View
1+
# Collection
22

33
`Alias: Umbraco.ListView`
44

55
`Returns: IEnumerable<IPublishedContent>`
66

7-
**Collection View** display a collection of categories when it is enabled on a Document Type that has children.
7+
**Collection** displays a collection of categories when it is enabled on a Document Type that has children.
88

9-
![Collection view example](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/listview.png)
9+
![Collection example](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/listview.png)
1010

11-
## Enable collection view
11+
## Enable collection
1212

1313
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.
1414

15-
![Enable Collection view example](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/enable-listview.png)
15+
![Enable Collection example](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/enable-listview.png)
1616

1717
## Settings
1818

19-
![Collection view settings example](/14/umbraco-cms/fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/images/list-view-settings.png)
19+
![Collection settings example](/14/umbraco-cms/fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/images/list-view-settings.png)
2020

2121

2222
### Page Size
@@ -41,25 +41,25 @@ You can select order of the content nodes displayed, "Acsending" or "Descending"
4141

4242
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.
4343

44-
![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)
44+
![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)
4545

4646
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.
4747

4848
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.
4949

5050
### Layouts
5151

52-
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.
52+
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.
5353

5454
{% hint style="info" %}
55-
A minimum of one layout needs to be enabled for the collection view to work.
55+
A minimum of one layout needs to be enabled for Collection to work.
5656
{% endhint %}
5757

5858
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.
5959

6060
### Bulk Action Permissions
6161

62-
Select what kind of action is available on the collection view.
62+
Select what kind of action is available on the collection.
6363

6464
* **Allow bulk publish** - content only
6565
* **Allow bulk unpublish** - content only
@@ -75,36 +75,36 @@ Changes the icon in the backoffice of the collection. By default it will look li
7575

7676
### Workspace View name
7777

78-
You can change the name of the collection view itself. Default if empty: 'Child Items'.
78+
You can change the name of the collection itself. Default if empty: 'Child Items'.
7979

8080
### Show Content Workspace View First
8181

82-
Enable this to show the Content Workspace View by default instead of the Collection's.
82+
Enable this to show the Content Workspace View by default instead of the collection's.
8383

8484
## Content Example
8585

8686
### Generic field value
8787

88-
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)
88+
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)
8989

9090
The `{{ value }}` will take the value of the Email property and display it in the collection, as shown on the image below.
9191

92-
![Collection view content example email](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/listview-content-example-email.png)
92+
![Collection content example email](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/listview-content-example-email.png)
9393

9494
### Member name
9595

9696
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`.
9797

98-
![Collection view member picker](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/member-picker.png)
98+
![Collection member picker](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/member-picker.png)
9999

100-
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.
100+
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.
101101

102-
![Collection view member picker](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/member-picker-settings.png)
102+
![Collection member picker](../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/images/member-picker-settings.png)
103103

104-
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)
104+
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)
105105

106-
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)
106+
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)
107107

108108
### Other examples
109109

110-
![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)
110+
![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)

0 commit comments

Comments
 (0)