diff --git a/13/umbraco-ui-builder/release-notes.md b/13/umbraco-ui-builder/release-notes.md index 9c5a64c94f6..246ce577f96 100644 --- a/13/umbraco-ui-builder/release-notes.md +++ b/13/umbraco-ui-builder/release-notes.md @@ -18,6 +18,12 @@ If you are upgrading to a new major version, check the breaking changes in the [ This section contains the release notes for Umbraco UI Builder 13 including all changes for this version. +#### [**13.1.4**](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F13.1.4) **(May 13th 2024)** + +* Added support for using properties of nested objects as searchable [#97](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues/97#issuecomment-2074303827) + +You can read more about this in the [searchable properties](searching/searchable-properties.md) article. + #### [**13.1.3**](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F13.1.3) **(May 8th 2024)** * Fixed an issue with the `UdiConverter` affecting child collections [#99](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues/99) diff --git a/13/umbraco-ui-builder/searching/searchable-properties.md b/13/umbraco-ui-builder/searching/searchable-properties.md index 8c62eeb7efe..0d9646a3da1 100644 --- a/13/umbraco-ui-builder/searching/searchable-properties.md +++ b/13/umbraco-ui-builder/searching/searchable-properties.md @@ -6,6 +6,8 @@ description: Configuring searchable properties in Umbraco UI Builder, the backof Searchable properties allow you to define any `String` based properties on a model. They will be searchable via Umbraco UI Builder's list view and entity picker search controls. +You can also use any `String` based property of nested objects of a model, as long as the parent object is not null. + ![Search](../images/search.png) ## Defining searchable properties @@ -17,4 +19,5 @@ Adds the given property to the searchable properties collection. ````csharp // Example collectionConfig.AddSearchableProperty(p => p.FirstName); +collectionConfig.AddSearchableProperty(p => p.Address.Street); ````