Skip to main content
A newer version of this page is available. .
Tab

AutoCompleteBoxPropertiesBase.IncrementalFilteringDelay Property

Specifies the time interval after which the editor filters items.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.2.dll

Declaration

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

Property Value

Type Default Description
Int32 100

The time interval, in milliseconds.

Remarks

GridView-IncrementalFilteringDelay

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

See Also