Search Results for

    Show / Hide Table of Contents

    Class FieldDynamicView

    Stores a filter template which can be used to query for related items

    Inheritance
    object
    FieldBase
    FieldDynamicView
    Inherited Members
    FieldBase.Id
    FieldBase.IndexId
    FieldBase.FieldNamespace
    FieldBase.Names
    FieldBase.Descriptions
    FieldBase.Required
    FieldBase.UiBehavior
    FieldBase.Index
    FieldBase.SimpleSearch
    FieldBase.Sortable
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: System.Dynamic.ExpandoObject
    Syntax
    [GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
    public class FieldDynamicView : FieldBase

    Properties

    FilterTemplate

    Template to generate filter based on current item.

    Declaration
    [JsonProperty("filterTemplate", Required = Required.Always)]
    [Required]
    public FilterBase FilterTemplate { get; set; }
    Property Value
    FilterBase

    Sort

    Specifies sorting to be used in search with FilterBase> from FilterTemplate

    Declaration
    [JsonProperty("sort", Required = Required.Always)]
    [Required]
    public ICollection<SortInfo> Sort { get; set; }
    Property Value
    ICollection<SortInfo>

    TargetDocType

    Type of item this field points to. Restricted to Content at this time.

    Declaration
    [JsonProperty("targetDocType", Required = Required.Always)]
    [Required]
    public string TargetDocType { get; set; }
    Property Value
    string

    ViewUiSettings

    Settings for displaying purposes in the UI

    Declaration
    [JsonProperty("viewUiSettings", Required = Required.Always)]
    public DynamicViewFieldUiSettings ViewUiSettings { get; set; }
    Property Value
    DynamicViewFieldUiSettings

    Methods

    FromJson(string)

    Declaration
    public static FieldDynamicView FromJson(string data)
    Parameters
    string data

    Returns
    FieldDynamicView

    ToJson()

    Declaration
    public string ToJson()
    Returns
    string

    Back to top Generated by DocFX