Back to Devexpress

DxFormLayoutGroup.Expanded Property

blazor-devexpress-dot-blazor-dot-dxformlayoutgroup.md

latest2.1 KB
Original Source

DxFormLayoutGroup.Expanded Property

Specifies whether the FormLayout group is expanded.

Namespace : DevExpress.Blazor

Assembly : DevExpress.Blazor.v25.2.dll

NuGet Package : DevExpress.Blazor

Declaration

csharp
[DefaultValue(true)]
[Parameter]
public bool Expanded { get; set; }

Property Value

TypeDefaultDescription
Booleantrue

true to expand the group; otherwise, false.

|

Remarks

Use the Expanded property to expand or collapse the group. Handle the ExpandedChanged event to react to group state changes.

razor
<DxFormLayout>
    <DxFormLayoutGroup Caption="Personal Information" 
                       Expanded="false"
                       ExpandButtonDisplayMode="GroupExpandButtonDisplayMode.Start"
                       ColSpanMd="6">
        <DxFormLayoutItem Caption="First Name:" ColSpanMd="12">
            <DxTextBox />
        </DxFormLayoutItem>
        <DxFormLayoutItem Caption="Last Name:" ColSpanMd="12">
            <DxTextBox />
        </DxFormLayoutItem>
    </DxFormLayoutGroup>
    <DxFormLayoutGroup Caption="Work Information" 
                       ExpandButtonDisplayMode="GroupExpandButtonDisplayMode.Start"
                       ColSpanMd="6">
        <DxFormLayoutItem Caption="Department:" ColSpanMd="12">
            <DxTextBox />
        </DxFormLayoutItem>
        <DxFormLayoutItem Caption="Position:" ColSpanMd="12">
            <DxTextBox />
        </DxFormLayoutItem>
    </DxFormLayoutGroup>
</DxFormLayout>

View Example: Collapsible groups

See Also

DxFormLayoutGroup Class

DxFormLayoutGroup Members

DevExpress.Blazor Namespace