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

BootstrapCardViewColumnLayoutItem.BeginRow Property

Specifies whether an item should be rendered within a new row.

Namespace: DevExpress.Web.Bootstrap

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

Declaration

[DefaultValue(false)]
public bool BeginRow { get; set; }

Property Value

Type Default Description
Boolean **false**

true, to render an item within a new row; otherwise, false.

Remarks

...
<dx:BootstrapLayoutItem Caption="Address Type" BeginRow="true">
    <ContentCollection>
        <dx:ContentControl>
            <dx:BootstrapRadioButton runat="server" Text="Home" GroupName="AddressTypeGroup">
                <SettingsBootstrap InlineMode="true" />
            </dx:BootstrapRadioButton>
            <dx:BootstrapRadioButton runat="server" Text="Work" GroupName="AddressTypeGroup" Checked="true">
                <SettingsBootstrap InlineMode="true" />
            </dx:BootstrapRadioButton>
        </dx:ContentControl>
    </ContentCollection>
</dx:BootstrapLayoutItem>
...

Note

View the Demo To see this feature in action, please refer to the following online demos: Item Wrapping, Default FormLayout.

See Also