Skip to main content
Tab

CardViewColumn Class

Serves as a base for classes that represent data columns.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public class CardViewColumn :
    WebColumnBase,
    IWebGridDataColumn,
    IWebGridDataColumnBase,
    IWebGridColumn,
    IWebGridExportColumn,
    IFilterColumn,
    IFilterablePropertyInfo,
    IWebColumnInfo,
    IDataSourceViewSchemaAccessor,
    IWebGridDataColumnAdapterOwner

Remarks

Settings provided by the CardViewColumn class allow you to control how column data is displayed and edited, whether the column takes part in sorting and in which order, etc.

The ASPxCardView control is designed to edit tabular information, representing it in cards. The control stores its columns in the ASPxCardView.Columns collection. The ASPxCardView supports bound and unbound columns.

  • Bound columns obtain their data from the control’s data source. Their CardViewColumn.FieldName property refers to a valid field in the data source.
  • Unbound columns are not bound to any field in the data source. These columns must be populated manually using the ASPxCardView.CustomUnboundColumnData event.

To learn more, see Data Columns.

See Also