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

TabbedLayoutGroup Class

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.2.dll

Declaration

public class TabbedLayoutGroup :
    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

<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

See Also