Back to Devexpress

TabbedLayoutGroup Class

aspnet-devexpress-dot-web-555b7cef.md

latest4.0 KB
Original Source

TabbedLayoutGroup Class

A tabbed layout group in the ASPxFormLayout control.

Namespace : DevExpress.Web

Assembly : DevExpress.Web.v25.2.dll

NuGet Package : DevExpress.Web

Declaration

csharp
public class TabbedLayoutGroup :
    LayoutGroupBase
vb
Public Class TabbedLayoutGroup
    Inherits LayoutGroupBase

Remarks

Use the TabbedLayoutGroup class to create an individual tabbed layout group in the ASPxFormLayout control.

Note

The FindControl method is not in effect for the control’s tabbed layout group.

Create a Tabbed Group

aspx
<dx:ASPxFormLayout runat="server" ...>
    <Items>
        <dx:TabbedLayoutGroup Caption="TabbedGroup" Width="100%" TabPosition="Bottom">
            <Items>
                <dx:LayoutGroup >
                    <SettingsItemCaptions Location="Top" />
                    <Items>
                        <dx:LayoutItem Caption="Email" RequiredMarkDisplayMode="Required">
                              <LayoutItemNestedControlCollection>
                                  <dx:LayoutItemNestedControlContainer>
                                    <dx:ASPxTextBox ID="emailTextBox" .../>
                                  </dx:LayoutItemNestedControlContainer>
                            </LayoutItemNestedControlCollection>
                        </dx:LayoutItem>
                        ...
                    </Items>
                </dx:LayoutGroup>
                ...
            </Items>
        </dx:TabbedLayoutGroup>
    </Items>
    ...
</dx:ASPxFormLayout>

Online Demo

Implements

IStateManager

IPropertiesOwner

IExpressionsAccessor

Inheritance

Show 17 items

Object StateManager CollectionItem LayoutItemBase LayoutGroupBase TabbedLayoutGroup GridTabbedLayoutGroup

GridViewTabbedLayoutGroup

CardViewTabbedLayoutGroup

BootstrapGridViewTabbedLayoutGroup

BootstrapTabbedLayoutGroup

BootstrapCardViewTabbedLayoutGroup

MVCxCardViewTabbedLayoutGroup

MVCxGridViewTabbedLayoutGroup<ModelType>

MVCxGridViewTabbedLayoutGroup

MVCxTabbedFormLayoutGroup<ModelType>

MVCxTabbedFormLayoutGroup

See Also

TabbedLayoutGroup Members

Form Layout

DevExpress.Web Namespace