Skip to main content

RepositoryItemPopupBaseAutoSearchEdit.ImmediatePopup Property

Gets or sets whether the popup window is displayed immediately after an end-user has typed a character in the edit box.

Namespace: DevExpress.XtraEditors.Repository

Assembly: DevExpress.XtraEditors.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

[DefaultValue(false)]
[DXCategory("Behavior")]
public virtual bool ImmediatePopup { get; set; }

Property Value

Type Default Description
Boolean false

true if the popup window is displayed immediately after an end-user has typed a character in the edit box; otherwise, false.

Remarks

Set the ImmediatePopup property to true to display a popup window immediately after an end-user has typed a character to select an item from the popup list. The popup window can also be opened as follows:

To open the dropdown via code, see the PopupBaseEdit.ShowPopup method.

For LookUpEdit editors, the ImmediatePopup property is only in effect when the RepositoryItemLookUpEdit.SearchMode property is set to SearchMode.AutoComplete. In SearchMode.AutoFilter mode, the dropdown is opened automatically when typing within the edit box. In SearchMode.OnlyInPopup search mode, typing within the edit box never opens the dropdown.

See Also