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

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.v18.2.dll

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
AdvBandedGridView
.OptionsFilter.ShowAllTableValuesInCheckedFilterPopup
BandedGridView
.OptionsFilter.ShowAllTableValuesInCheckedFilterPopup
ColumnView
.OptionsFilter.ShowAllTableValuesInCheckedFilterPopup
CardView
.OptionsFilter.ShowAllTableValuesInCheckedFilterPopup
GridView
.OptionsFilter.ShowAllTableValuesInCheckedFilterPopup
LayoutView
.OptionsFilter.ShowAllTableValuesInCheckedFilterPopup
TileView
.OptionsFilter.ShowAllTableValuesInCheckedFilterPopup
WinExplorerView
.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