AutoCompleteBoxPropertiesBase.IncrementalFilteringDelay Property
Specifies the time interval after which the editor filters items.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
Declaration
Property Value
Type | Default | Description |
---|---|---|
Int32 | 100 | The time interval, in milliseconds. |
Remarks
<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.
Related GitHub Examples
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