Skip to main content

ColumnBase.ImmediateUpdateColumnFilter Property

Gets or sets whether the column’s filter condition is updated as soon as a user selects an item within the column’s drop-down filter. This is a dependency property.

Namespace: DevExpress.WinUI.Grid

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

NuGet Package: DevExpress.WinUI

Declaration

[DP(true)]
public bool ImmediateUpdateColumnFilter { get; set; }

Property Value

Type Description
Boolean

true to enable automatic updates; otherwise, false.

Remarks

If the column’s drop-down filter is a regular list of items, only one item can be selected at a time. In this case, the GridControl updates the column’s filter and closes the drop-down filter when a user selects an item.

For the date-time drop-down filter or when you use a custom template, you can use the ImmediateUpdateColumnFilter property to enable or disable automatic updates. If automatic updates are disabled, the GridControl applies a filter after a user closes the drop-down filter.

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

See Also