Skip to main content
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 Filter Dropdown. This is a dependency property.

Namespace: DevExpress.Xpf.Grid

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

#Declaration

[XtraSerializableProperty]
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 Filter Dropdown.

See Also