Class AutoCompletePropertiesBase
Inheritance
Inherited Members
Namespace: Syncfusion.JavaScript
Assembly: Syncfusion.EJ.dll
Syntax
public class AutoCompletePropertiesBase : PropertiesBase
Constructors
AutoCompletePropertiesBase()
Holds the all the properties of Autocomplete control
Declaration
public AutoCompletePropertiesBase()
Properties
AllowSorting
Specifies the whether allowSorting to be allowed or not in suggestion list on initialization
Declaration
[JsonProperty("allowSorting")]
public bool AllowSorting { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
CaseSensitiveSearch
Specifies whether to search key is case sensitive or not on initialization.
Declaration
[JsonProperty("caseSensitiveSearch")]
public bool CaseSensitiveSearch { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
DelimiterChar
Specifies the delimiterChar string for Multivalue mode that separates two items.
Declaration
[JsonProperty("delimiterChar")]
public string DelimiterChar { get; set; }
Property Value
Type | Description |
---|---|
System.String | The delimiter. |
EmptyResultText
Specifies the text that to be displayed while there is no suggestion for AutoComplete search key
Declaration
[JsonProperty("emptyResultText")]
public string EmptyResultText { get; set; }
Property Value
Type | Description |
---|---|
System.String | The no result text. |
EnableAutoFill
Specifies whether to auto fill option by which we can select and show up the first search result in textbox on initialization.
Declaration
[JsonProperty("enableAutoFill")]
public bool EnableAutoFill { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Enabled
Specifies whether to enable the autoComplete on initialization.
Declaration
[JsonProperty("enabled")]
public bool Enabled { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
EnableDistinct
Specifies whether the duplicate results to be shown or not in search results.
Declaration
[JsonProperty("enableDistinct")]
public bool EnableDistinct { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
EnableMultiSelect
Specifies whether to accept multiple values or not.
Declaration
[JsonProperty("enableMultiSelect")]
public bool EnableMultiSelect { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
EnablePersistence
Current model value to browser cookies for state maintains. While refresh the Autocomplete control page retains the model value apply from browser cookies.
Declaration
[JsonProperty("enablePersistence")]
public bool EnablePersistence { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
MinimumCharacter
Specifies the minimum search key length after which only autocomplete querying the datasource.
Declaration
[JsonProperty("minCharacter")]
public int MinimumCharacter { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | The minimum character. |
ShowEmptyResultText
Specifies the search result to be shown or not while there is no suggestion for AutoComplete search key.
Declaration
[JsonProperty("showEmptyResultText")]
public bool ShowEmptyResultText { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
SortOrder
Specifies the suggestion list sorting order.
Declaration
[JsonProperty("sortOrder")]
[JsonConverter(typeof(StringEnumConverter))]
public SortOrder SortOrder { get; set; }
Property Value
Type | Description |
---|---|
SortOrder | The sort order. |