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

TcxCustomGridTableFiltering.MRUItemsListCount Property

Specifies the maximum number of most recently applied filter criteria available in the filter drop-down window for the filter panel if the text filter criteria display style is active.

Declaration

property MRUItemsListCount: Integer read; write; default cxGridFilterDefaultMRUItemsListCount;

Property Value

Type Default Description
Integer cxGridFilterDefaultMRUItemsListCount

The maximum MRU list size.

Remarks

A filter drop-down window for the filter panel displays a list of the most recently used filter criteria (MRU list for short). This list is populated in chronological order where the most recently used filter criterion is on top. The MRUItemsListCount property value limits the number of items in the list. If a user applies a new filter criterion to a grid View, and the MRU list is full, the oldest entry at the bottom of the list is deleted. You can assign 0 to the MRUItemsListCount property to remove this MRU list size limitation.

A grid View’s FilterBox.MRUItemsListDropDownCount property limits the number of simultaneously visible items in a filter drop-down window for the filter panel. A user can scroll the list if its size exceeds the FilterBox.MRUItemsListDropDownCount property value.

The MRUItemsListCount property’s default value is the cxGridFilterDefaultMRUItemsListCount global constant.

See Also