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

TcxGridCardViewFiltering.RowMRUItemsListCount Property

Specifies the maximum number of most recently used filter items that can be displayed within filter dropdowns for card rows.

#Declaration

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

#Property Value

Type Default
Integer cxGridFilterDefaultItemMRUItemsListCount

#Remarks

Filter dropdowns for card rows can display a list of the most recently used filter items (MRU list for short). Each time after a filter item in the dropdown has been 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 RowMRUItemsListCount property’s value. After this has happened, selecting a filter item results in this item being added to the top of the MRU list and the bottom filter item in the list being deleted.

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

The default value of the RowMRUItemsListCount property is specified by the cxGridFilterDefaultItemMRUItemsListCount constant.

See Also