TabbedLayoutGroup Class
A tabbed layout group in the ASPxFormLayout control.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
Declaration
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
Inheritance
Object
StateManager
CollectionItem
LayoutItemBase
LayoutGroupBase
TabbedLayoutGroup
See Also