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

VGridOptionsRowFilter.PopupExcelFilterNumericValuesTabFilterType Property

If the current row contains numeric data, gets or sets whether to display a list of available data values or a range track bar in the ‘Values’ tab of the Excel-style Filter Dropdown.

Namespace: DevExpress.XtraVerticalGrid.Rows

Assembly: DevExpress.XtraVerticalGrid.v18.2.dll

Declaration

[DefaultValue(ExcelFilterNumericValuesTabFilterType.Default)]
[XtraSerializableProperty]
public virtual ExcelFilterNumericValuesTabFilterType PopupExcelFilterNumericValuesTabFilterType { get; set; }

Property Value

Type Default Description
DevExpress.XtraVerticalGrid.ExcelFilterNumericValuesTabFilterType **Default**

The value that specifies the type of filtering UI in the ‘Values’ tab in the filter dropdown.

Property Paths

You can access this nested property as listed below:

Object Type Path to PopupExcelFilterNumericValuesTabFilterType
CategoryRowProperties
.OptionsFilter.PopupExcelFilterNumericValuesTabFilterType
MultiEditorRowProperties
.OptionsFilter.PopupExcelFilterNumericValuesTabFilterType
RowProperties
.OptionsFilter.PopupExcelFilterNumericValuesTabFilterType

Remarks

For numeric columns, the filtering UI in the ‘Values’ tab in the Excel-style Filter Dropdown can be presented as a list or as a range track bar. You can set the PopupExcelFilterNumericValuesTabFilterType property to List or Range to explicitly apply the corresponding display mode:

List Range
VGridOptionsRowFilter_PopupExcelFilterNumericValuesTabFilterType_List VGridOptionsRowFilter_PopupExcelFilterNumericValuesTabFilterType_Range

By default, the PopupExcelFilterNumericValuesTabFilterType property is set to Default. In this case, the filtering UI type is chosen based on the following logic:

Condition Filtering UI Type
The row’s in-place editor is one of the following: ImageComboBox (RepositoryItemImageComboBox), RadioGroup (RepositoryItemRadioGroup), PopupContainerEdit (RepositoryItemPopupContainerEdit), or LookUpEdit (RepositoryItemLookUpEditBase descendants). List
The row’s RowProperties.FilterMode property is set to DisplayText. List
The row’s bound field is marked with the KeyAttribute (e.g., System.ComponentModel.DataAnnotations.KeyAttribute). List
The row’s bound field ends with “id” (case-insensitive comparison) and is of the int, uint, long, ulong, GUID or IntPtr data type. List
The row’s bound field is marked with the DevExpress.Utils.Filtering.FilterLookup attribute. List
The row’s bound field is marked with the DevExpress.Utils.Filtering.FilterRange attribute Range

To learn more about the DevExpress.Utils.Filtering.FilterLookup and DevExpress.Utils.Filtering.FilterRange attributes, see Filtering Attributes.

See Also