menu

ASP.NET Web Forms

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class AutoCompletePropertiesBase

    Show / Hide Table of Contents

    Class AutoCompletePropertiesBase

    Inheritance
    System.Object
    EJTagHelper
    PropertiesBase
    AutoCompletePropertiesBase
    MobileAutoCompleteProperties
    Inherited Members
    PropertiesBase.Create
    PropertiesBase.Destroy
    PropertiesBase.CssClass
    EJTagHelper.GetControlDetails()
    EJTagHelper.GetControlDetails(String)
    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 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

    true if [allow sorting]; otherwise, false.

    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

    true if [case sensitive search]; otherwise, false.

    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

    true if [allow automatic fill]; otherwise, false.

    Enabled

    Specifies whether to enable the autoComplete on initialization.

    Declaration
    [JsonProperty("enabled")]
    public bool Enabled { get; set; }
    Property Value
    Type Description
    System.Boolean

    true if enabled; otherwise, false.

    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

    true if allow distinct value; otherwise, false.

    EnableMultiSelect

    Specifies whether to accept multiple values or not.

    Declaration
    [JsonProperty("enableMultiSelect")]
    public bool EnableMultiSelect { get; set; }
    Property Value
    Type Description
    System.Boolean

    true if [enable multi select]; otherwise, false.

    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

    true if persist; otherwise, false.

    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

    true if [show no result text]; otherwise, false.

    SortOrder

    Specifies the suggestion list sorting order.

    Declaration
    [JsonConverter(typeof(StringEnumConverter))]
    [JsonProperty("sortOrder")]
    public SortOrder SortOrder { get; set; }
    Property Value
    Type Description
    SortOrder

    The sort order.

    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved