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

RepositoryItemGridLookUpEditBase.PopupView Property

Gets or sets the View used to represent data in the dropdown.

Namespace: DevExpress.XtraEditors.Repository

Assembly: DevExpress.XtraGrid.v19.1.dll

Declaration

[DXCategory("View")]
public ColumnView PopupView { get; set; }

Property Value

Type Description
ColumnView

A ColumnView descendant that is currently used to represent data in the dropdown.

Remarks

By default, this property is set to an instance of the GridView class. You can change the View type using one of the following methods:

After you switch the View type, you may need to perform additional customizations of the created View. For instance, after you activate the BandedView or AdvBandedView format, you need to manually create bands and add columns to the bands. Otherwise, these Views cannot display data.

At design time, you can customize the View with the Data Grid Designer. To open the designer, do one of the following:

  • click the ellipsis button for the PopupView property in Properties grid.
  • invoke the Designer View command from the Properties window or the control’s smart tag.

GridLookUpEdit-Designer

It’s not possible to share a single View between multiple LookUp editors and grid controls.

See Also