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
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ In this article, we'll look into how you can work with the `IDeliveryApiProperty

The examples in this article revolve around the fictional `My.Custom.Picker` property editor. This property editor stores the key of a single content item and is backed by a property value converter.

We will not dive into the details of creating a custom property editor for Umbraco in this article. If you need guidance on that, refer to the [Creating a Property Editor](https://docs.umbraco.com/umbraco-cms/tutorials/creating-a-property-editor) and [Property Value Converters](https://docs.umbraco.com/umbraco-cms/extending/property-editors/property-value-converters) articles.
We will not dive into the details of creating a custom property editor for Umbraco in this article. If you need guidance on that, refer to the [Creating a Property Editor](https://docs.umbraco.com/umbraco-cms/tutorials/creating-a-property-editor) and [Property Value Converters](../../extending/property-editors/property-value-converters) articles.

## Implementation

Expand All @@ -24,7 +24,7 @@ The code example below showcases the implementation of this interface in the pro

Towards the end of the example, you will find the response models that we will be using.

The `IsConverter()` and `GetPropertyValueType()` methods are inherited from the `PropertyValueConverterBase` class, which is covered in the [Property Value Converters](https://docs.umbraco.com/umbraco-cms/extending/property-editors/property-value-converters) article.
The `IsConverter()` and `GetPropertyValueType()` methods are inherited from the `PropertyValueConverterBase` class, which is covered in the [Property Value Converters](../../extending/property-editors/property-value-converters) article.

{% code title="MyCustomPickerValueConverter.cs" lineNumbers="true" %}
```csharp
Expand Down
4 changes: 2 additions & 2 deletions 15/umbraco-forms/developer/ajaxforms.md
Original file line number Diff line number Diff line change
Expand Up @@ -544,7 +544,7 @@ Examples demonstrating how to handle a file upload and use reCAPTCHA fields are

## Working with the CMS Content Delivery API

The [Content Delivery API](https://docs.umbraco.com/umbraco-cms/v/12.latest/reference/content-delivery-api) provides headless capabilities within Umbraco by allowing you to retrieve content in JSON format.
The [Content Delivery API](https://docs.umbraco.com/umbraco-cms/reference/content-delivery-api) provides headless capabilities within Umbraco by allowing you to retrieve content in JSON format.

When retrieving content that contains an Umbraco Forms form picker, the output by default will consist of the ID of the selected form:

Expand All @@ -570,7 +570,7 @@ When retrieving content that contains an Umbraco Forms form picker, the output b
}
```

With [expanded output](https://docs.umbraco.com/umbraco-cms/v/12.latest/reference/content-delivery-api#output-expansion) for the property, the full details of the form will be available. The structure and content of the form representation will be exactly the same as that provided by the Forms API itself.
With [expanded output](https://docs.umbraco.com/umbraco-cms/reference/content-delivery-api) for the property, the full details of the form will be available. The structure and content of the form representation will be exactly the same as that provided by the Forms API itself.

```json
{
Expand Down