aspnet-devexpress-dot-web-dot-aspxautocompleteboxbase-da99a0cb.md
Specifies the time interval after which the editor filters items.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
[DefaultValue(100)]
public int IncrementalFilteringDelay { get; set; }
<DefaultValue(100)>
Public Property IncrementalFilteringDelay As Integer
| Type | Default | Description |
|---|---|---|
| Int32 | 100 |
The time interval, in milliseconds.
|
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