RepositoryItemSearchLookUpEdit.PopupFilterMode Property
Namespace: DevExpress.XtraEditors.Repository
Assembly: DevExpress.XtraGrid.v25.1.dll
NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation
Declaration
[Browsable(false)]
[EditorBrowsable(EditorBrowsableState.Never)]
public override PopupFilterMode PopupFilterMode { get; set; }
Property Value
Type |
---|
PopupFilterMode |
Available values:
Name | Description |
---|---|
Default | This option is equivalent to the StartsWith option for GridLookUpEdit and TreeListLookUpEdit controls in the following cases: 1) users cannot edit text in the text box (RepositoryItemLookUpEditBase.TextEditStyle is not set to Standard), 2) users can edit text in the text box and the control automatically completes the entered text (RepositoryItemGridLookUpEdit.SearchMode). Otherwise, this option is equivalent to the Contains option for the GridLookUpEdit and TreeListLookUpEdit controls. This option is equivalent to the StartsWith option for the LookUpEdit control. This option is equivalent to the Contains option for the SearchLookUpEdit control. Users can use the Find Panel to search for keywords. You can use the ColumnViewOptionsFind.FindFilterColumns property to specify grid columns in which to search for keywords. |
Contains | Selects records that contain the specified sub-string. A search for rows is performed against the column specified by the editor’s Properties.DisplayMember property (RepositoryItemLookUpEditBase.DisplayMember). |
StartsWith | Selects records whose field values start with the specified string. A search for rows is performed against the column specified by the editor’s Properties.DisplayMember property (RepositoryItemLookUpEditBase.DisplayMember). |