Skip to main content

BootstrapCardView Class

A server Card View control.

Namespace: DevExpress.Web.Bootstrap

Assembly: DevExpress.Web.Bootstrap.v23.2.dll

NuGet Package: DevExpress.Web.Bootstrap

Declaration

[DXClientDocumentationProviderWeb("BootstrapCardView")]
[ToolboxTabName("DX.23.2: Bootstrap Controls")]
public class BootstrapCardView :
    ASPxCardView,
    ISimpleRenderControl,
    IBootstrapGridCssClassesOwner

The following members return BootstrapCardView objects:

Remarks

The BootstrapCardView is a data bound control designed to edit tabular information, representing it as a set of cards.

BootstrapCardView_Editing_EditForm

Columns

The BootstrapCardView control stores its columns within the BootstrapCardView.Columns collection. Data columns can be automatically created for each field in the data source when the BootstrapCardView is rendered, or created manually. This is controlled by the ASPxCardView.AutoGenerateColumns property.

By default, this property is set to true. This forces the BootstrapCardView to render each field from the data source as a data column. The order of columns is the same as the order of fields in the data source. To manually control which columns are to appear in the BootstrapCardView, set the ASPxCardView.AutoGenerateColumns property to false. In this case, you should manually add data columns to the BootstrapCardView.Columns collection.

Client-Side API

The BootstrapCardView control provides you with a comprehensive client-side functionality implemented using JavaScript code.

The client-side API is always available for this control.

See Also