Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TcxGridDBCardView Class

Represents a data-aware Card View.

#Declaration

Delphi
TcxGridDBCardView = class(
    TcxGridCardView
)

#Remarks

The TcxGridDBCardView class implements the data-aware version of the TcxGridCardView class. It inherits all the ancestor functionality except for the data binding settings (for information about View functionality features see the TcxGridCardView class description). These settings are encapsulated in the DataController property. The DataController.DataSource property specifies a TDataSet object or its descendant which manages the View connection to a data store. Other data controller settings specify the key fields for implementing master-detail relationships, filter and summary settings for the current View and the behavior options of the data controller.

The key element of the data-aware Card View, like its ancestor, is a Card View row. However, the data-aware View uses the TcxGridDBCardViewRow class. The only difference between a regular Card View row and a data-aware Card View row is the DataBinding property which provides the connection between a card row and a data source’s field.

See Also