Skip to main content
Tag

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

ColumnBase.ImmediateUpdateColumnFilter Property

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

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v24.2.Core.dll

NuGet Package: DevExpress.Wpf.Grid.Core

#Declaration

public bool ImmediateUpdateColumnFilter { get; set; }

#Property Value

Type Description
Boolean

true to enable automatic updates; otherwise, false.

#Remarks

If the column’s filter dropdown is represented as a regular list of items, only one item at a time can be selected. In this instance, selecting an item automatically updates the column’s filter and closes the filter dropdown.

If the filter dropdown is represented as a checked list (multiple items can be checked/unchecked simultaneously) or by a custom template, use the ImmediateUpdateColumnFilter property to enable or disable automatic updates. If automatic updates are disabled, the filter is applied after the filter dropdown has been closed.

To learn more, see Drop-down Filter.

See Also