diff --git a/10/umbraco-forms/developer/extending/adding-a-fieldtype.md b/10/umbraco-forms/developer/extending/adding-a-fieldtype.md index 553ca10705d..41c78acf0ff 100644 --- a/10/umbraco-forms/developer/extending/adding-a-fieldtype.md +++ b/10/umbraco-forms/developer/extending/adding-a-fieldtype.md @@ -132,7 +132,7 @@ public override string GetDesignView() => ## Field settings -Field settings that will be managed in the backoffice by editors creating forms using the custom field type can be added to the C# class as properties with a `Setting` attribute: +Field settings that will be managed in the backoffice by editors creating forms using the custom field type can be added to the C# class. These settings can be added as properties with a `Setting` attribute: ```csharp [Setting("My Setting", Description = "Help text for the setting", View = "TextField", SupportsPlaceholders = "true", DisplayOrder = 10)] @@ -177,7 +177,7 @@ To reference the file the setting should be configured with a full path to the v ## Backoffice entry rendering -The third and final client-side view file used for settings is in the rendering of the submitted values for the field in the "Entries" section of the backoffice. +The third and final client-side view file used for settings is in the rendering of the submitted values for the field. This rendering takes place in the "Entries" section of the backoffice. These are defined by the `RenderView` property of a field type and are found in `App_Plugins\UmbracoForms\backoffice\Common\RenderTypes\`. diff --git a/12/umbraco-forms/developer/extending/adding-a-fieldtype.md b/12/umbraco-forms/developer/extending/adding-a-fieldtype.md index 655fa56e2e3..978cf0b89b2 100644 --- a/12/umbraco-forms/developer/extending/adding-a-fieldtype.md +++ b/12/umbraco-forms/developer/extending/adding-a-fieldtype.md @@ -131,7 +131,7 @@ public override string GetDesignView() => ## Field settings -Field settings that will be managed in the backoffice by editors creating forms using the custom field type can be added to the C# class as properties with a `Setting` attribute: +Field settings that will be managed in the backoffice by editors creating forms using the custom field type can be added to the C# class. These settings can be added as properties with a `Setting` attribute: ```csharp [Setting("My Setting", Description = "Help text for the setting", View = "TextField", SupportsPlaceholders = "true", DisplayOrder = 10)] @@ -196,7 +196,7 @@ public override string MySetting { get; set; } ## Backoffice entry rendering -The third and final client-side view file used for settings is in the rendering of the submitted values for the field in the "Entries" section of the backoffice. +The third and final client-side view file used for settings is in the rendering of the submitted values for the field. This rendering takes place in the "Entries" section of the backoffice. These are defined by the `RenderView` property of a field type and are found in `App_Plugins\UmbracoForms\backoffice\Common\RenderTypes\`. diff --git a/13/umbraco-forms/developer/extending/adding-a-fieldtype.md b/13/umbraco-forms/developer/extending/adding-a-fieldtype.md index 7821eecf05c..04b710c8d27 100644 --- a/13/umbraco-forms/developer/extending/adding-a-fieldtype.md +++ b/13/umbraco-forms/developer/extending/adding-a-fieldtype.md @@ -131,7 +131,7 @@ public override string GetDesignView() => ## Field settings -Field settings that will be managed in the backoffice by editors creating forms using the custom field type can be added to the C# class as properties with a `Setting` attribute: +Field settings that will be managed in the backoffice by editors creating forms using the custom field type can be added to the C# class. These settings can be added as properties with a `Setting` attribute. ```csharp [Setting("My Setting", Description = "Help text for the setting", View = "TextField", SupportsPlaceholders = "true", DisplayOrder = 10)] @@ -198,7 +198,7 @@ public override string MySetting { get; set; } ## Backoffice entry rendering -The third and final client-side view file used for settings is in the rendering of the submitted values for the field in the "Entries" section of the backoffice. +The third and final client-side view file used for settings is in the rendering of the submitted values for the field. This rendering takes place in the "Entries" section of the backoffice. These are defined by the `RenderView` property of a field type and are found in `App_Plugins\UmbracoForms\backoffice\Common\RenderTypes\`. diff --git a/14/umbraco-forms/developer/extending/adding-a-fieldtype.md b/14/umbraco-forms/developer/extending/adding-a-fieldtype.md index 67f93506c49..eb82c021682 100644 --- a/14/umbraco-forms/developer/extending/adding-a-fieldtype.md +++ b/14/umbraco-forms/developer/extending/adding-a-fieldtype.md @@ -160,7 +160,7 @@ With Forms 14, aspects of the presentation and functionality of the custom field * A settings converter, that handles configuring the property editor and translating between the editor and persisted values. * Translations for setting labels and descriptions. -To create custom backoffice components for Umbraco 14, it's recommended to use a front-end build setup using Vite, TypeScript, and Lit. For more information, see the [Extension with Vite, Typescript, and Lit](https://app.gitbook.com/s/G1Byxw7XfiZAj8zDMCTD/tutorials/creating-your-first-extension#extension-with-vite-typescript-and-lit) article. +To create custom backoffice components for Umbraco 14, it's recommended to use a front-end build setup using Vite, TypeScript, and Lit. For more information, see the [Extension with Vite, TypeScript, and Lit](https://app.gitbook.com/s/G1Byxw7XfiZAj8zDMCTD/tutorials/creating-your-first-extension#extension-with-vite-typescript-and-lit) article. ### Field Preview