Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TcxGridTableFiltering.ColumnMRUItemsListCount Property

Specifies the maximum number of most recently used filter items that can be displayed in filter pop-up windows for columns.

#Declaration

Delphi
property ColumnMRUItemsListCount: Integer read; write; default cxGridFilterDefaultItemMRUItemsListCount;

#Property Value

Type Default Description
Integer cxGridFilterDefaultItemMRUItemsListCount

The maximum number of most recently used filter items in filter pop-up windows.

#Remarks

Filter dropdowns for columns can display a list of the most recently used filter items (MRU list for short). Each time a filter item in the dropdown is selected, it is displayed at the top of the MRU list. The next time another filter item is selected, it is added to the top of the MRU list, thus increasing the number of filter items in the list. This takes place until the number of filter items reaches the ColumnMRUItemsListCount property value. Once this value is reached, if an additional filter item is selected, the item is added to the top of the MRU list and the bottom filter item in the list is deleted.

The ColumnPopup.MaxDropDownItemCount property’s value specifies the number of filter items that can be displayed simultaneously within filter dropdowns for columns.

The ColumnMRUItemsListCount property’s default value is cxGridFilterDefaultItemMRUItemsListCount.

See Also