Class AutocompleteFields
Represents the Autocomplete UI elements which includes key, text, HTML attributes, group by, and category property.
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Syncfusion.JavaScript
Assembly: Syncfusion.EJ.dll
Syntax
public class AutocompleteFields : EJTagHelper
Constructors
AutocompleteFields()
Declaration
public AutocompleteFields()
Properties
Category
This method returns category field value which is of string type
Declaration
[JsonProperty("category")]
public string Category { get; set; }
Property Value
Type | Description |
---|---|
System.String |
GroupBy
Used to group the items.
Declaration
[JsonProperty("groupBy")]
public string GroupBy { get; set; }
Property Value
Type | Description |
---|---|
System.String |
HtmlAttributes
Defines the HTML attributes such as ID, class, and styles for the item.
Declaration
[JsonProperty("htmlAttributes")]
public string HtmlAttributes { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Key
Defines the specific field name which contains unique key values for the list items.
Declaration
[JsonProperty("key")]
public string Key { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Text
Defines the text content for the tag.
Declaration
[JsonProperty("text")]
public string Text { get; set; }
Property Value
Type | Description |
---|---|
System.String |