Skip to main content

ColumnViewOptionsFilter.ShowAllTableValuesInCheckedFilterPopup Property

Gets or sets whether checked filter dropdown lists must display unique values from all the records in the View’s data source or only from those records that meet the current filter criteria. This option is in effect for checked filter dropdown lists.

Namespace: DevExpress.XtraGrid.Views.Base

Assembly: DevExpress.XtraGrid.v23.2.dll

NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation

Declaration

[DefaultValue(true)]
[XtraSerializableProperty]
public virtual bool ShowAllTableValuesInCheckedFilterPopup { get; set; }

Property Value

Type Default Description
Boolean true

true if checked filter dropdowns should contain unique values from all the records in the View’s data source; false if the checked filter dropdowns of unfiltered columns should contain unique values from only the records that meet the current filter criteria.

Property Paths

You can access this nested property as listed below:

Object Type Path to ShowAllTableValuesInCheckedFilterPopup
ColumnView
.OptionsFilter .ShowAllTableValuesInCheckedFilterPopup

Remarks

The ColumnViewOptionsFilter.ShowAllTableValuesInFilterPopup option is applied to regular filter dropdown lists, while the ShowAllTableValuesInCheckedFilterPopup property is applied to checked dropdown lists. For more information on this setting, see ColumnViewOptionsFilter.ShowAllTableValuesInFilterPopup.

See Also