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.v18.2.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. To use another View, you can assign another View object to this property. For instance, you can assign a BandedGridView or TileView object.

To change the type of View, you can also use the RepositoryItemGridLookUpEditBase.PopupViewType property. Changing this property’s value creates a corresponding View object and assigns it to the PopupView property.

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

At design time, you can expand the PopupView property in the Properties window to access the settings of the selected View. To change the type of View at design time, use the RepositoryItemGridLookUpEditBase.PopupViewType property. To open the embedded grid’s designer (for instance, in order to add and customize columns, in-place editors, etc), click the ellipsis button (‘…’) displayed within the PopupView row in the Properties window.

See Also