Skip to main content

FormItemsFactory<T>.AddTabbed() Method

Adds a tabbed item to a Form control.

Namespace: DevExtreme.AspNet.Mvc.Factories

Assembly: DevExtreme.AspNet.Core.dll

Declaration

public FormTabbedItemBuilder<T> AddTabbed()

Returns

Type Description
FormTabbedItemBuilder<T>

An instance of FormTabbedItemBuilder<T>.

Remarks

@(Html.DevExtreme().Form()
    .Items(items => {
        items.AddTabbed() // call methods in a chain to configure the item
    })
)
See Also