Skip to main content

FormItemEditorFactory.TagBox() Method

Creates a TagBox control that is used as a form item’s editor.

Namespace: DevExtreme.AspNet.Mvc.Factories

Assembly: DevExtreme.AspNet.Core.dll

Declaration

public TagBoxBuilder TagBox()

Returns

Type Description
TagBoxBuilder

An instance of TagBoxBuilder.

Remarks

@(Html.DevExtreme().Form()
    .Items(items => {
        items.AddSimple()
            .Editor(e => e.TagBox()
                // call methods in a chain to customize the control
            );
    })
)
See Also