Back to Devexpress

ASPxAutoCompleteBoxBase.IncrementalFilteringDelay Property

aspnet-devexpress-dot-web-dot-aspxautocompleteboxbase-da99a0cb.md

latest2.2 KB
Original Source

ASPxAutoCompleteBoxBase.IncrementalFilteringDelay Property

Specifies the time interval after which the editor filters items.

Namespace : DevExpress.Web

Assembly : DevExpress.Web.v25.2.dll

NuGet Package : DevExpress.Web

Declaration

csharp
[DefaultValue(100)]
public int IncrementalFilteringDelay { get; set; }
vb
<DefaultValue(100)>
Public Property IncrementalFilteringDelay As Integer

Property Value

TypeDefaultDescription
Int32100

The time interval, in milliseconds.

|

Remarks

The IncrementalFilteringDelay property allows you to specify the filter delay. The ASPxComboBox does not apply the filter until the specified time interval ends.

In markup:

aspx
<dx:ASPxComboBox ID="Countries" runat="server" IncrementalFilteringDelay="1000">
    <Items>
        <!--...-->
    </Items>
</dx:ASPxComboBox>

In code:

csharp
protected void Page_Load(object sender, EventArgs e){
    ASPxComboBox cb = new ASPxComboBox();
    cb.ID = "Countries";
    cb.Items.AddRange(new List<ListEditItem>(){
        //...
    })
    cb.IncrementalFilteringDelay = 1000;
}

Run Demo: ASPxComboBox - Incremental Filtering

See Also

IncrementalFilteringMode

FilterMinLength

ASPxAutoCompleteBoxBase Class

ASPxAutoCompleteBoxBase Members

DevExpress.Web Namespace