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

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.v19.1.Core.dll

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