diff --git a/15/umbraco-ui-builder/filtering/data-views.md b/15/umbraco-ui-builder/filtering/data-views.md index 822e123be4c..89ffb5cfe7f 100644 --- a/15/umbraco-ui-builder/filtering/data-views.md +++ b/15/umbraco-ui-builder/filtering/data-views.md @@ -43,3 +43,13 @@ AddDataView(string group, string name, Lambda whereClauseExpression) : Collectio ````csharp collectionConfig.AddDataView("Status", "Active", p => p.IsActive); ```` + +### Using the `AddAllDataView` Method + +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. + +#### Method Synthax + +```cs +collectionConfig.AddAllDataView(string? label) +``` diff --git a/15/umbraco-ui-builder/release-notes.md b/15/umbraco-ui-builder/release-notes.md index f51e135b37a..df0907a2d68 100644 --- a/15/umbraco-ui-builder/release-notes.md +++ b/15/umbraco-ui-builder/release-notes.md @@ -18,6 +18,13 @@ If you are upgrading to a new major version, check the breaking changes in the [ Below are the release notes for Umbraco UI Builder 15, detailing all changes in this version. +#### [**15.1.7**](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F15.1.7) **(June 11th 2025)** + +* Fixed an issue with collection filters in custom repositories [#146](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues/146) +* Fixed an issue with child collections not being displayed on subsequent requests [#147](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues/147) +* Persist collection filters using `localStorage` [#156](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues/156) +* 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) + #### [**15.1.6**](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F15.1.6) **(June 4th 2025)** * Collections list view pagination fixes [#142](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues/142)