Skip to content

Umbraco Forms 14 missing MediaPicker field in custom field setting. #1305

@thf-09

Description

@thf-09

Ever since updating to Umbraco 14, any MediaPicker fields in my custom field settings don't show up anymore. The views I've tried are Umb.PropertyEditorUi.MediaPicker and Umbraco.MediaPicker3.

Reproduction

To reproduce, create a custom field or workflow in Umbraco Forms with a MediaPicker setting. For example this:

    [Setting("Image", View = "Umb.PropertyEditorUi.MediaPicker")]
    public string Image { get; set; }

    public CustomField()
    {
        this.Id = new Guid("0b52c034-e73c-4fbb-9ad7-c2716200d79b");
        this.Name = "Content Field";
        this.Icon = "icon-umb-content";
        this.DataType = FieldDataType.String;
        this.SortOrder = 190;
        this.SupportsRegex = true;
        this.FieldTypeViewName = "FieldType.CustomField.cshtml";
        this.Alias = "CustomField";
    }

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions