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
4 changes: 4 additions & 0 deletions 10/umbraco-ui-builder/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ 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 10 including all changes for this version.

#### [**10.0.4**](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F10.0.4) **(March 18th 2024)**

* Fixed an issue where the database is getting disposed in a UIBuilder repository, causing an error when Forms tries to save the form submission after the workflow is complete [Umbraco.Forms.Issues#1179](https://github.com/umbraco/Umbraco.Forms.Issues/issues/1179).

#### [**10.0.3**](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F10.0.3) **(February 20th 2024)**

* Dependency version update for `Umbraco.Licenses`
Expand Down
4 changes: 4 additions & 0 deletions 12/umbraco-ui-builder/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ 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 12 including all changes for this version.

#### [**12.0.5**](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F12.0.5) **(March 18th 2024)**

* Fixed an issue where the database is getting disposed in a UIBuilder repository, causing an error when Forms tries to save the form submission after the workflow is complete [Umbraco.Forms.Issues#1179](https://github.com/umbraco/Umbraco.Forms.Issues/issues/1179).

#### [**12.0.4**](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F12.0.4) **(February 20th 2024)**

* Dependency version update for `Umbraco.Licenses`
Expand Down
9 changes: 9 additions & 0 deletions 13/umbraco-ui-builder/collections/the-basics.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,15 @@ Sets which property of your entity to use as the name property. Property must be
collectionConfig.SetNameProperty(p => p.Name);
````

### **SetNameProperty(Lambda namePropertyExpression, string heading) : CollectionConfigBuilder<TEntityType>**

Sets which property of your entity to use as the name property and what custom heading should the list view column heading be. Property must be of type `string`. By defining a property as the name property, its value will be used as the label for the entity in trees and list views. It will also be editable in the header region of the editor interface. The property will also automatically be added to the searchable properties collection and be used for the default sort property.

````csharp
// Example
collectionConfig.SetNameProperty(p => p.Name, "Person Name");
````

### **SetNameFormat(Lambda nameFormatExpression) : CollectionConfigBuilder<TEntityType>**

Sets a format expression to use to dynamically create a label for the entity in things like trees and list views. By providing a name format it is assumed there is no single name property available on the entity. And as such none of the default behaviors described for the `SetNameProperty` method will apply.
Expand Down
9 changes: 9 additions & 0 deletions 13/umbraco-ui-builder/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,15 @@ 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.1**](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F13.1.1) **(March 18th 2024)**

* Fixed an issue where the database is getting disposed in a UIBuilder repository, causing an error when Forms tries to save the form submission after the workflow is complete [Umbraco.Forms.Issues#1179](https://github.com/umbraco/Umbraco.Forms.Issues/issues/1179).
* Allow renaming the heading of the implicit `Name` column by calling the `SetNameProperty` method overload.

You can read more about this in [the basics](collections/the-basics.md) article.
* Use `CsvHelper` library with the built in `ExportEntityAction`.
* Update `CsvHelper` version dependency.

#### [**13.1.0**](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F13.1.0) **(March 6th 2024)**

* All updates listed under 13.1.0-rc1 and 13.1.0-rc2.
Expand Down