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

MVCxFormLayoutItemCollection<ModelType>.AddTabbedGroupItem(Action<MVCxTabbedFormLayoutGroup<ModelType>>) Method

Adds a tabbed layout group with the specified settings to the MVCxFormLayoutItemCollection<ModelType> collection.

Namespace: DevExpress.Web.Mvc

Assembly: DevExpress.Web.Mvc5.v19.2.dll

Declaration

public MVCxTabbedFormLayoutGroup<ModelType> AddTabbedGroupItem(
    Action<MVCxTabbedFormLayoutGroup<ModelType>> method
)

Parameters

Name Type Description
method Action<MVCxTabbedFormLayoutGroup<ModelType>>

A delegate method that accepts MVCxTabbedFormLayoutGroup<ModelType> as a parameter.

Returns

Type Description
MVCxTabbedFormLayoutGroup<ModelType>

An MVCxTabbedFormLayoutGroup<ModelType> object that is the newly added tabbed layout group.

Remarks

The code sample below demonstrates how to add a customized tabbed layout group.

@Html.DevExpress().FormLayout(settings =>
{
    settings.Name = "FormLayout1";
    settings.ColCount = 2;

    //Adding a layout group 
    settings.Items.AddTabbedGroupItem(group =>
    {
        //Specifying the number of columns that the layout group spans 
        group.ColSpan = 2;

        //Adding layout items onto this group 
        group.Items.Add(i => i.LastName);
        group.Items.Add(i => i.FirstName);
    });
}).GetHtml()
See Also