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

TreeListSettingsBehavior.AutoFilterRowInputDelay Property

Gets or sets the time interval between the time a user starts typing within the Filter Row, and filtering is applied.

Namespace: DevExpress.Web.ASPxTreeList

Assembly: DevExpress.Web.ASPxTreeList.v18.2.dll

Declaration

[DefaultValue(1200)]
public int AutoFilterRowInputDelay { get; set; }

Property Value

Type Default Description
Int32 1200

An integer value that specifies the time interval, in milliseconds.

Property Paths

You can access this nested property as listed below:

Object Type Path to AutoFilterRowInputDelay
ASPxTreeList
.SettingsBehavior.AutoFilterRowInputDelay
MVCxTreeList
.SettingsBehavior.AutoFilterRowInputDelay
TreeListSettings
.SettingsBehavior.AutoFilterRowInputDelay
TreeListSettings<RowType>
.SettingsBehavior.AutoFilterRowInputDelay

Remarks

Use the TreeListDataColumn.AllowAutoFilterTextInputTimer property to enable/disable the automatic filter application property for each column.

Note

The automatic filter application is disabled when the TreeListSettingsBehavior.FilterRowMode property is set to OnClick.

Note

Online Demos Refer to the Tree List - Data Filter Row(Web Forms) online demo to review how to filter Tree List data nodes using the Filter Row.

See Also