CardViewBreakpoint.CardsPerRow Property
Specifies the number of cards the control displays in a row.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.1.dll
NuGet Package: DevExpress.Web
Declaration
Property Value
Type | Default | Description |
---|---|---|
Int32 | 6 | An integer value specifying the number of cards in a row. |
Remarks
Use the CardsPerRow property to specify the number of cards the control displays in a row for a specified breakpoint. To define how many cards the Card View displays in a row if there are no specified breakpoints for a given browser’s width, use the ASPxCardViewBreakpointsLayoutSettings.CardsPerRow property.
The following example illustrates how to implement three different layout scenarios for different browser sizes (Small, Medium, Large):
CardView.Settings.LayoutMode = Layout.Breakpoints;
CardView.SettingsAdaptivity.BreakpointsLayoutSettings.CardsPerRow = 5;
CardView.SettingsAdaptivity.BreakpointsLayoutSettings.Breakpoints.AddRange(new List<CardViewBreakpoint>() {
new CardViewBreakpoint() { DeviceSize = BreakpointsLayoutDeviceSizes.Small, CardsPerRow = 3 },
new CardViewBreakpoint() { DeviceSize = BreakpointsLayoutDeviceSizes.Custom, MaxWidth = 1300, CardsPerRow = 4 },
});
Concept
Online Demo
See Also