diff --git a/16/umbraco-ui-builder/filtering/data-views.md b/16/umbraco-ui-builder/filtering/data-views.md index 822e123be4c..37ae2dfaba7 100644 --- a/16/umbraco-ui-builder/filtering/data-views.md +++ b/16/umbraco-ui-builder/filtering/data-views.md @@ -43,3 +43,14 @@ 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/16/umbraco-ui-builder/release-notes.md b/16/umbraco-ui-builder/release-notes.md index 1cf3e373e94..3b2d0830f59 100644 --- a/16/umbraco-ui-builder/release-notes.md +++ b/16/umbraco-ui-builder/release-notes.md @@ -18,7 +18,9 @@ If you are upgrading to a new major version, check the breaking changes in the [ Below are the release notes for Umbraco UI Builder, detailing all changes in this version. +#### [**16.0.0**](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F16.0.0) **(June 12th 2025)** +* Upgraded to run on Umbraco version 16. ## Legacy Release Notes