Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions 16/umbraco-ui-builder/filtering/data-views.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
```

2 changes: 2 additions & 0 deletions 16/umbraco-ui-builder/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down