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

RepositoryItemGridLookUpEditBase.PopupViewType Property

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

Namespace: DevExpress.XtraEditors.Repository

Assembly: DevExpress.XtraGrid.v18.2.dll

Declaration

[DXCategory("View")]
[DefaultValue(GridLookUpViewType.Default)]
public GridLookUpViewType PopupViewType { get; set; }

Property Value

Type Default Description
GridLookUpViewType **Default**

A GridLookUpViewType value that specifies the type of the current View.

Available values:

Name Description
Default

The default View is used.

Currently this option is the same as the GridView option

GridView

Corresponds to a GridView View.

BandedView

Corresponds to a BandedGridView View.

AdvBandedView

Corresponds to an AdvBandedGridView View.

TileView

Corresponds to a TileView.

Remarks

Use this property to change the type of View used to represent data within the embedded grid control. Assigning a new value to the PopupViewType property creates a new View object and assigns it to the RepositoryItemGridLookUpEditBase.PopupView property (the previously assigned View is disposed of).

See Also