diff --git a/13/umbraco-forms/developer/working-with-data.md b/13/umbraco-forms/developer/working-with-data.md index d54bcaf68da..3dbcd3c156d 100644 --- a/13/umbraco-forms/developer/working-with-data.md +++ b/13/umbraco-forms/developer/working-with-data.md @@ -77,7 +77,7 @@ Guid UniqueId Dictionary RecordFields ``` -In order to access custom Form fields, these are available in the `RecordFields` property. Furthermore there exists an extension method named `ValueAsString` on `IRecord` in `Umbraco.Forms.Core.Services`, such that you can get the value as string given the alias of the field. +In order to access custom Form fields, these are available in the `RecordFields` property. Furthermore there exists an extension method named `ValueAsString` on `Record` in `Umbraco.Forms.Core.Services`, such that you can get the value as string given the alias of the field. This extension method handle multi value fields by comma separating the values. E.g. "A, B, C" diff --git a/13/umbraco-forms/release-notes.md b/13/umbraco-forms/release-notes.md index a6319b85f41..d71b9e3c709 100644 --- a/13/umbraco-forms/release-notes.md +++ b/13/umbraco-forms/release-notes.md @@ -17,6 +17,10 @@ If you are upgrading to a new major version, you can find information about the This section contains the release notes for Umbraco Forms 13 including all changes for this version. +#### [**13.2.1**](https://github.com/umbraco/Umbraco.Forms.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F13.2.1) **(August 6th 2024)** + +* Fixed issue with entries export for Windows installations without access to a component necessary for auto-fit of Excel columns [#1259](https://github.com/umbraco/Umbraco.Forms.Issues/issues/1259). + #### [**13.2.0**](https://github.com/umbraco/Umbraco.Forms.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F13.2.0) **(July 23rd 2024)** {% hint style="warning" %} diff --git a/14/umbraco-forms/developer/working-with-data.md b/14/umbraco-forms/developer/working-with-data.md index d54bcaf68da..822b76417b1 100644 --- a/14/umbraco-forms/developer/working-with-data.md +++ b/14/umbraco-forms/developer/working-with-data.md @@ -77,7 +77,7 @@ Guid UniqueId Dictionary RecordFields ``` -In order to access custom Form fields, these are available in the `RecordFields` property. Furthermore there exists an extension method named `ValueAsString` on `IRecord` in `Umbraco.Forms.Core.Services`, such that you can get the value as string given the alias of the field. +In order to access custom Form fields, these are available in the `RecordFields` property. Furthermore there exists an extension method named `ValueAsString` on `Record` in `Umbraco.Forms.Core.Extensions`, such that you can get the value as string given the alias of the field. This extension method handle multi value fields by comma separating the values. E.g. "A, B, C" @@ -88,7 +88,7 @@ Sample script that is outputting comments using a Form created with the default ```csharp @using Umbraco.Core; @using Umbraco.Cms.Core.Composing; -@using Umbraco.Forms.Core.Services; +@using Umbraco.Forms.Core.Extensions; @inject IRecordReaderService _recordReaderService;