Back to Devexpress

AutoCompleteBoxPropertiesBase.IncrementalFilteringDelay Property

aspnet-devexpress-dot-web-dot-autocompleteboxpropertiesbase-f2f10cff.md

latest4.7 KB
Original Source

AutoCompleteBoxPropertiesBase.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

aspx
<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.

asp-net-mvc-grid-cascading-combo-boxes-in-batch-edit-mode/CS/Models/ComboBoxPropertiesProvider.cs#L74

csharp
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

csharp
cs.ValueType = typeof(int);
cs.IncrementalFilteringDelay = 1000;
cs.IncrementalFilteringMode = IncrementalFilteringMode.Contains;

asp-net-mvc-grid-cascading-combo-boxes-in-batch-edit-mode/VB/Models/ComboBoxPropertiesProvider.vb#L67

vb
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

vb
cs.ValueType = GetType(Integer)
cs.IncrementalFilteringDelay = 1000
cs.IncrementalFilteringMode = IncrementalFilteringMode.Contains

See Also

IncrementalFilteringMode

AutoCompleteBoxPropertiesBase Class

AutoCompleteBoxPropertiesBase Members

DevExpress.Web Namespace