aspnet-devexpress-dot-web-dot-autocompleteboxpropertiesbase-f2f10cff.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.
|
<dx:ASPxGridView ID="grid" runat="server" KeyFieldName="CustomerID" AutoGenerateColumns="False" DataSourceID="SqlDataSource1" >
<Columns>
<dx:GridViewCommandColumn ShowEditButton="true" />
<dx:GridViewDataColumn FieldName="ContactName"/>
<dx:GridViewDataComboBoxColumn FieldName="CompanyName">
<PropertiesComboBox EnableSynchronization="false" IncrementalFilteringMode="StartsWith" IncrementalFilteringDelay="1000"
DataSourceID="SqlDataSource1" ValueField="CompanyName" TextField="CompanyName">
</PropertiesComboBox>
</dx:GridViewDataComboBoxColumn>
</Columns>
</dx:ASPxGridView>
The IncrementalFilteringDelay property synchronizes its value with the editor’s ASPxAutoCompleteBoxBase.IncrementalFilteringDelay property.
Run Demo: ASPxGridView - Online Demos
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.
cs.ValueType = typeof(int);
cs.IncrementalFilteringDelay = 1000;
cs.IncrementalFilteringMode = IncrementalFilteringMode.Contains;
asp-net-mvc-grid-cascading-combo-boxes-in-edit-form/CS/Models/ComboBoxPropertiesProvider.cs#L74
cs.ValueType = typeof(int);
cs.IncrementalFilteringDelay = 1000;
cs.IncrementalFilteringMode = IncrementalFilteringMode.Contains;
cs.ValueType = GetType(Integer)
cs.IncrementalFilteringDelay = 1000
cs.IncrementalFilteringMode = IncrementalFilteringMode.Contains
asp-net-mvc-grid-cascading-combo-boxes-in-edit-form/VB/Models/ComboBoxPropertiesProvider.vb#L67
cs.ValueType = GetType(Integer)
cs.IncrementalFilteringDelay = 1000
cs.IncrementalFilteringMode = IncrementalFilteringMode.Contains
See Also
AutoCompleteBoxPropertiesBase Class