Skip to main content
A newer version of this page is available. .
Tab

AutoCompleteBoxPropertiesBase.IncrementalFilteringDelay Property

Gets or sets the time interval between the time a user enters the last symbol within the editor’ edit box and filtering is applied.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

[DefaultValue(100)]
public int IncrementalFilteringDelay { get; set; }

Property Value

Type Default Description
Int32 100

An integer value that specifies the time interval, in milliseconds.

Remarks

This property is in effect if the AutoCompleteBoxPropertiesBase.IncrementalFilteringMode property is not set to IncrementalFilteringMode.None.

Note

The IncrementalFilteringDelay property synchronizes its value with the editor’s ASPxAutoCompleteBoxBase.IncrementalFilteringDelay property.

MVC approach (Token Box):


@Html.DevExpress().TokenBox(settings =>
{
    settings.Name = "tokenBox1";

    settings.Properties.TextField = "Name";
    settings.Properties.ValueField = "Email";

    settings.Properties.IncrementalFilteringMode = IncrementalFilteringMode.StartsWith;
    settings.Properties.IncrementalFilteringDelay = 500;
}).BindList(Model).GetHtml()

The image below illustrates the results.

MVC_TokenBox_Overview

The following code snippets (auto-collected from DevExpress Examples) contain references to the IncrementalFilteringDelay property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also