Skip to main content

BootstrapGridViewColumnLayoutItem.BeginRow Property

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

Namespace: DevExpress.Web.Bootstrap

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

NuGet Package: DevExpress.Web.Bootstrap

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