Class FieldSingleTagbox
The field used to store a single tagbox
Inheritance
FieldSingleTagbox
Namespace: System.Dynamic.ExpandoObject
Syntax
[GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
public class FieldSingleTagbox : FieldBase
Properties
An optional filter to limit the list items.
Declaration
[JsonProperty("filter", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public FilterBase Filter { get; set; }
Property Value
Json serialized template used for creating new list item (no logic is implemented in backend).
Declaration
[JsonProperty("listItemCreateTemplate", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string ListItemCreateTemplate { get; set; }
Property Value
The ID of the schema to be used as tagbox (it must be of type List).
Declaration
[JsonProperty("schemaId", Required = Required.Always)]
[Required]
public string SchemaId { get; set; }
Property Value
Indexing information of fields of the related schema identified by the SchemaId property.
Declaration
[JsonProperty("schemaIndexingInfo", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public SchemaIndexingInfo SchemaIndexingInfo { get; set; }
Property Value
Defines the display pattern type to be used (Name or List only) when showing a tagbox item in view mode. Defaults to "Name".
The information is only consumed by the client application. No actual logic is implemented in the backend.
Declaration
[JsonProperty("viewModeDisplayPatternType", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
[JsonConverter(typeof(StringEnumConverter))]
public DisplayPatternType ViewModeDisplayPatternType { get; set; }
Property Value
Methods
Declaration
public static FieldSingleTagbox FromJson(string data)
Parameters
Returns