Search Results for

    Show / Hide Table of Contents
    View Source

    Class DataTypeConfigurationFieldDisplay

    Represents a datatype configuration field model for editing.

    Inheritance
    System.Object
    DataTypeConfigurationFieldSave
    Namespace: Umbraco.Cms.Core.Models.ContentEditing
    Assembly: Umbraco.Core.dll
    Syntax
    [DataContract(Name = "preValue", Namespace = "")]
    public class DataTypeConfigurationFieldDisplay : DataTypeConfigurationFieldSave

    Properties

    View Source

    Config

    This allows for custom configuration to be injected into the pre-value editor

    Declaration
    [DataMember(Name = "config")]
    public IDictionary<string, object>? Config { get; set; }
    Property Value
    Type Description
    System.Nullable<IDictionary<System.String, System.Object>>
    View Source

    Description

    The description to display for this pre-value field

    Declaration
    [DataMember(Name = "description")]
    public string Description { get; set; }
    Property Value
    Type Description
    System.String
    View Source

    HideLabel

    Specifies whether to hide the label for the pre-value

    Declaration
    [DataMember(Name = "hideLabel")]
    public bool HideLabel { get; set; }
    Property Value
    Type Description
    System.Boolean
    View Source

    Name

    The name to display for this pre-value field

    Declaration
    [DataMember(Name = "label", IsRequired = true)]
    public string Name { get; set; }
    Property Value
    Type Description
    System.String
    View Source

    View

    The view to render for the field

    Declaration
    [DataMember(Name = "view", IsRequired = true)]
    public string View { get; set; }
    Property Value
    Type Description
    System.String
    • Improve this Doc
    • View Source
    In This Article
    • Properties
      • Config
      • Description
      • HideLabel
      • Name
      • View
    Back to top Copyright © 2016-present Umbraco
    Generated by DocFX