Skip to main content

ColumnBase.ImmediateUpdateAutoFilter Property

Gets or sets whether the column’s filter condition is updated as soon as a user modifies the text within the automatic filter row’s cell. This is a dependency property.

Namespace: DevExpress.WinUI.Grid

Assembly: DevExpress.WinUI.Grid.v23.2.dll

NuGet Package: DevExpress.WinUI

Declaration

[DP(true, Handler = "OnAllowAutoFilterChanged")]
public bool ImmediateUpdateAutoFilter { get; set; }

Property Value

Type Description
Boolean

true to enable immediate updates; otherwise, false.

Remarks

When a user modifies the text within the automatic filter row’s cell, the filter condition for this column is immediately updated. To disable automatic updates, set the column’s ImmediateUpdateAutoFilter property to false. In this instance, a user should press the Enter key or move focus to another cell to force the updates.

For more information, refer to the following help topic: Automatic Filter Row.

See Also