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

GridViewDataColumnSettings.AllowAutoFilterTextInputTimer Property

Gets or sets whether the filter expression entered by an end-user within the auto-filter row cell is automatically applied.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v20.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(DefaultBoolean.Default)]
public DefaultBoolean AllowAutoFilterTextInputTimer { get; set; }

Property Value

Type Default Description
DefaultBoolean **Default**

One of the DefaultBoolean enumeration values.

Available values:

Name Description
True

Corresponds to a Boolean value of true.

False

Corresponds to a Boolean value of false.

Default

The value is determined by the current object’s parent object setting (e.g., a control setting).

Property Paths

You can access this nested property as listed below:

Show 36 property paths
Library Object Type Path to AllowAutoFilterTextInputTimer
ASP.NET Controls and MVC Extensions GridViewDataBinaryImageColumn
.Settings .AllowAutoFilterTextInputTimer
GridViewDataButtonEditColumn
.Settings .AllowAutoFilterTextInputTimer
GridViewDataCheckColumn
.Settings .AllowAutoFilterTextInputTimer
GridViewDataColorEditColumn
.Settings .AllowAutoFilterTextInputTimer
GridViewDataColumn
.Settings .AllowAutoFilterTextInputTimer
GridViewDataComboBoxColumn
.Settings .AllowAutoFilterTextInputTimer
GridViewDataDateColumn
.Settings .AllowAutoFilterTextInputTimer
GridViewDataDropDownEditColumn
.Settings .AllowAutoFilterTextInputTimer
GridViewDataHyperLinkColumn
.Settings .AllowAutoFilterTextInputTimer
GridViewDataImageColumn
.Settings .AllowAutoFilterTextInputTimer
GridViewDataMemoColumn
.Settings .AllowAutoFilterTextInputTimer
GridViewDataProgressBarColumn
.Settings .AllowAutoFilterTextInputTimer
GridViewDataSpinEditColumn
.Settings .AllowAutoFilterTextInputTimer
GridViewDataTextColumn
.Settings .AllowAutoFilterTextInputTimer
GridViewDataTimeEditColumn
.Settings .AllowAutoFilterTextInputTimer
GridViewDataTokenBoxColumn
.Settings .AllowAutoFilterTextInputTimer
GridViewEditDataColumn
.Settings .AllowAutoFilterTextInputTimer
ASP.NET Bootstrap Controls BootstrapGridViewBinaryImageColumn
.Settings .AllowAutoFilterTextInputTimer
BootstrapGridViewButtonEditColumn
.Settings .AllowAutoFilterTextInputTimer
BootstrapGridViewCheckColumn
.Settings .AllowAutoFilterTextInputTimer
BootstrapGridViewColorEditColumn
.Settings .AllowAutoFilterTextInputTimer
BootstrapGridViewComboBoxColumn
.Settings .AllowAutoFilterTextInputTimer
BootstrapGridViewDataColumn
.Settings .AllowAutoFilterTextInputTimer
BootstrapGridViewDateColumn
.Settings .AllowAutoFilterTextInputTimer
BootstrapGridViewDropDownEditColumn
.Settings .AllowAutoFilterTextInputTimer
BootstrapGridViewEditDataColumn
.Settings .AllowAutoFilterTextInputTimer
BootstrapGridViewHyperLinkColumn
.Settings .AllowAutoFilterTextInputTimer
BootstrapGridViewImageColumn
.Settings .AllowAutoFilterTextInputTimer
BootstrapGridViewMemoColumn
.Settings .AllowAutoFilterTextInputTimer
BootstrapGridViewProgressBarColumn
.Settings .AllowAutoFilterTextInputTimer
BootstrapGridViewSpinEditColumn
.Settings .AllowAutoFilterTextInputTimer
BootstrapGridViewTagBoxColumn
.Settings .AllowAutoFilterTextInputTimer
BootstrapGridViewTextColumn
.Settings .AllowAutoFilterTextInputTimer
BootstrapGridViewTimeEditColumn
.Settings .AllowAutoFilterTextInputTimer
ASP.NET MVC Extensions MVCxGridViewColumn
.Settings .AllowAutoFilterTextInputTimer
MVCxGridViewColumn<RowType>
.Settings .AllowAutoFilterTextInputTimer

Remarks

When the AllowAutoFilterTextInputTimer property is set to Default or True, the filter expression is applied to the grid data after a time interval specified by the ASPxGridViewBehaviorSettings.AutoFilterRowInputDelay property. Otherwise, the filter expression is applied only by an end-user action (e.g., pressing the Enter or Tab key).

Note

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

See Also