Skip to main content
Tab

ASPxAutoCompleteBoxBase.IncrementalFilteringDelay Property

Specifies the time interval after which the editor filters items.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v24.2.dll

NuGet Package: DevExpress.Web

#Declaration

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

#Property Value

Type Default Description
Int32 100

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:

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

In code:

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