Skip to content

Commit 8f8cbda

Browse files
authored
Merge pull request #7164 from acoumb/uibuilder-release
Umbraco UI Builder 15.1.7 release notes and docs on data view
2 parents bd1d847 + 540c4c1 commit 8f8cbda

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

15/umbraco-ui-builder/filtering/data-views.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,3 +43,13 @@ AddDataView(string group, string name, Lambda whereClauseExpression) : Collectio
4343
````csharp
4444
collectionConfig.AddDataView("Status", "Active", p => p.IsActive);
4545
````
46+
47+
### Using the `AddAllDataView` Method
48+
49+
Enables the `All` option for data views in the collection. The method can take an empty string, which will display the CMS localized `All` value, plain text, or a localized string.
50+
51+
#### Method Synthax
52+
53+
```cs
54+
collectionConfig.AddAllDataView(string? label)
55+
```

15/umbraco-ui-builder/release-notes.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,13 @@ If you are upgrading to a new major version, check the breaking changes in the [
1818

1919
Below are the release notes for Umbraco UI Builder 15, detailing all changes in this version.
2020

21+
#### [**15.1.7**](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F15.1.7) **(June 11th 2025)**
22+
23+
* Fixed an issue with collection filters in custom repositories [#146](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues/146)
24+
* Fixed an issue with child collections not being displayed on subsequent requests [#147](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues/147)
25+
* Persist collection filters using `localStorage` [#156](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues/156)
26+
* Set default value for Data Views and allow the display of [all](./filtering/data-views.md#using-the-addalldataview-method) collection entities through configuration [#170](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues/170)
27+
2128
#### [**15.1.6**](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F15.1.6) **(June 4th 2025)**
2229

2330
* Collections list view pagination fixes [#142](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues/142)

0 commit comments

Comments
 (0)