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

RepositoryItemTokenEdit.PopupFilterMode Property

Gets or sets how items within this TokenEdit‘s popup are filtered.

Namespace: DevExpress.XtraEditors.Repository

Assembly: DevExpress.XtraEditors.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

[DefaultValue(TokenEditPopupFilterMode.StartWith)]
[DXCategory("Behavior")]
public TokenEditPopupFilterMode PopupFilterMode { get; set; }

#Property Value

Type Default Description
DevExpress.XtraEditors.TokenEditPopupFilterMode StartWith

A DevExpress.XtraEditors.TokenEditPopupFilterMode enumerator value that specifies how items within this TokenEdit‘s popup are filtered.

#Remarks

The PopupFilterMode property sets the rule based on which items in this TokenEdit control’s popup are filtered as an end-user enters text to the editor.

  • StartWith mode specifies that the editor popup displays only those tokens whose caption starts with the same character(s) as an end-user has entered;
  • Contains mode specifies that the editor popup displays all tokens whose captions contain the character(s) an end-user has entered.

The figure below illustrates the difference between the two PopupFilterMode modes.

TokenEdit - PopupFilterMode

See Also