Skip to main content
A newer version of this page is available. .
All docs
V20.2
Tab

LayoutItemCaptionSettings.ChangeCaptionLocationInAdaptiveMode Property

Specifies whether to change the caption location of a layout item when the control is in Adaptive Grid Layout (Breakpoints) mode.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v20.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(DefaultBoolean.Default)]
public DefaultBoolean ChangeCaptionLocationInAdaptiveMode { get; set; }

Property Value

Type Default Description
DefaultBoolean **Default**

true, to change the caption location of a layout item when the control is in Adaptive Grid Layout mode.

Available values:

Name Description
True

Corresponds to a Boolean value of true.

False

Corresponds to a Boolean value of false.

Default

The value is determined by the current object’s parent object setting (e.g., a control setting).

Property Paths

You can access this nested property as listed below:

Show 55 property paths
Library Object Type Path to ChangeCaptionLocationInAdaptiveMode
ASP.NET Controls and MVC Extensions ASPxFormLayout
.SettingsItemCaptions .ChangeCaptionLocationInAdaptiveMode
CardViewColumnLayoutItem
.CaptionSettings .ChangeCaptionLocationInAdaptiveMode
CardViewCommandLayoutItem
.CaptionSettings .ChangeCaptionLocationInAdaptiveMode
CardViewFormLayoutProperties
.SettingsItemCaptions .ChangeCaptionLocationInAdaptiveMode
CardViewLayoutGroup
.SettingsItemCaptions .ChangeCaptionLocationInAdaptiveMode
CardViewTabbedLayoutGroup
.SettingsItemCaptions .ChangeCaptionLocationInAdaptiveMode
ColumnLayoutItem
.CaptionSettings .ChangeCaptionLocationInAdaptiveMode
CommandLayoutItem
.CaptionSettings .ChangeCaptionLocationInAdaptiveMode
ContentPlaceholderLayoutItem
.CaptionSettings .ChangeCaptionLocationInAdaptiveMode
EditModeCommandLayoutItem
.CaptionSettings .ChangeCaptionLocationInAdaptiveMode
FormLayoutProperties
.SettingsItemCaptions .ChangeCaptionLocationInAdaptiveMode
GridFormLayoutProperties
.SettingsItemCaptions .ChangeCaptionLocationInAdaptiveMode
GridLayoutGroup
.SettingsItemCaptions .ChangeCaptionLocationInAdaptiveMode
GridTabbedLayoutGroup
.SettingsItemCaptions .ChangeCaptionLocationInAdaptiveMode
GridViewColumnLayoutItem
.CaptionSettings .ChangeCaptionLocationInAdaptiveMode
GridViewFormLayoutProperties
.SettingsItemCaptions .ChangeCaptionLocationInAdaptiveMode
GridViewLayoutGroup
.SettingsItemCaptions .ChangeCaptionLocationInAdaptiveMode
GridViewTabbedLayoutGroup
.SettingsItemCaptions .ChangeCaptionLocationInAdaptiveMode
LayoutGroup
.SettingsItemCaptions .ChangeCaptionLocationInAdaptiveMode
LayoutGroupBase
.SettingsItemCaptions .ChangeCaptionLocationInAdaptiveMode
LayoutItem
.CaptionSettings .ChangeCaptionLocationInAdaptiveMode
TabbedLayoutGroup
.SettingsItemCaptions .ChangeCaptionLocationInAdaptiveMode
ASP.NET Bootstrap Controls BootstrapCardViewColumnLayoutItem
.CaptionSettings .ChangeCaptionLocationInAdaptiveMode
BootstrapCardViewCommandLayoutItem
.CaptionSettings .ChangeCaptionLocationInAdaptiveMode
BootstrapCardViewFormLayoutProperties
.SettingsItemCaptions .ChangeCaptionLocationInAdaptiveMode
BootstrapCardViewLayoutGroup
.SettingsItemCaptions .ChangeCaptionLocationInAdaptiveMode
BootstrapCardViewTabbedLayoutGroup
.SettingsItemCaptions .ChangeCaptionLocationInAdaptiveMode
BootstrapEditModeCommandLayoutItem
.CaptionSettings .ChangeCaptionLocationInAdaptiveMode
BootstrapFormLayout
.SettingsItemCaptions .ChangeCaptionLocationInAdaptiveMode
BootstrapFormLayoutProperties
.SettingsItemCaptions .ChangeCaptionLocationInAdaptiveMode
BootstrapGridViewColumnLayoutItem
.CaptionSettings .ChangeCaptionLocationInAdaptiveMode
BootstrapGridViewFormLayoutProperties
.SettingsItemCaptions .ChangeCaptionLocationInAdaptiveMode
BootstrapGridViewLayoutGroup
.SettingsItemCaptions .ChangeCaptionLocationInAdaptiveMode
BootstrapGridViewTabbedLayoutGroup
.SettingsItemCaptions .ChangeCaptionLocationInAdaptiveMode
BootstrapLayoutGroup
.SettingsItemCaptions .ChangeCaptionLocationInAdaptiveMode
BootstrapLayoutItem
.CaptionSettings .ChangeCaptionLocationInAdaptiveMode
BootstrapTabbedLayoutGroup
.SettingsItemCaptions .ChangeCaptionLocationInAdaptiveMode
ASP.NET MVC Extensions FormLayoutSettings<ModelType>
.SettingsItemCaptions .ChangeCaptionLocationInAdaptiveMode
MVCxCardViewColumnLayoutItem
.CaptionSettings .ChangeCaptionLocationInAdaptiveMode
MVCxCardViewFormLayoutProperties
.SettingsItemCaptions .ChangeCaptionLocationInAdaptiveMode
MVCxCardViewLayoutGroup
.SettingsItemCaptions .ChangeCaptionLocationInAdaptiveMode
MVCxCardViewTabbedLayoutGroup
.SettingsItemCaptions .ChangeCaptionLocationInAdaptiveMode
MVCxFormLayout
.SettingsItemCaptions .ChangeCaptionLocationInAdaptiveMode
MVCxFormLayoutGroup
.SettingsItemCaptions .ChangeCaptionLocationInAdaptiveMode
MVCxFormLayoutGroup<ModelType>
.SettingsItemCaptions .ChangeCaptionLocationInAdaptiveMode
MVCxFormLayoutItem
.CaptionSettings .ChangeCaptionLocationInAdaptiveMode
MVCxGridViewColumnLayoutItem
.CaptionSettings .ChangeCaptionLocationInAdaptiveMode
MVCxGridViewFormLayoutProperties
.SettingsItemCaptions .ChangeCaptionLocationInAdaptiveMode
MVCxGridViewFormLayoutProperties<ModelType>
.SettingsItemCaptions .ChangeCaptionLocationInAdaptiveMode
MVCxGridViewLayoutGroup
.SettingsItemCaptions .ChangeCaptionLocationInAdaptiveMode
MVCxGridViewLayoutGroup<ModelType>
.SettingsItemCaptions .ChangeCaptionLocationInAdaptiveMode
MVCxGridViewTabbedLayoutGroup
.SettingsItemCaptions .ChangeCaptionLocationInAdaptiveMode
MVCxGridViewTabbedLayoutGroup<ModelType>
.SettingsItemCaptions .ChangeCaptionLocationInAdaptiveMode
MVCxTabbedFormLayoutGroup
.SettingsItemCaptions .ChangeCaptionLocationInAdaptiveMode
MVCxTabbedFormLayoutGroup<ModelType>
.SettingsItemCaptions .ChangeCaptionLocationInAdaptiveMode

Remarks

Run Demo

Use the ChangeCaptionLocationAtWidth property to specify the width at which the caption location is changed. If the ChangeCaptionLocationAtWidth property is not specified, the control does not change the caption location.

<dx:ASPxFormLayout runat="server" ID="ASPxFormLayout" >
    <SettingsItemCaptions ChangeCaptionLocationInAdaptiveMode="True" />
    <Items>
        <dx:LayoutGroup Width="100%" Caption="Group name">
            <GridSettings ChangeCaptionLocationAtWidth="660">
                ...
            </GridSettings>
            <Items>
                <dx:LayoutItem Caption="First name" >
                    <CaptionSettings ChangeCaptionLocationInAdaptiveMode="Default" />
                    ...
                </dx:LayoutItem>
                ...
            </Items>
        </dx:LayoutGroup>
    </Items>
</dx:ASPxFormLayout>
See Also