FormItemEditorFactory.DropDownBox() Method
In This Article
Creates a DropDownBox control that is used as a form item’s editor.
Namespace: DevExtreme.AspNet.Mvc.Factories
Assembly: DevExtreme.AspNet.Core.dll
#Declaration
C#
public DropDownBoxBuilder DropDownBox()
#Returns
Type | Description |
---|---|
Drop |
An instance of Drop |
#Remarks
@(Html.DevExtreme().Form()
.Items(items => {
items.AddSimple()
.Editor(e => e.DropDownBox()
// call methods in a chain to customize the control
);
})
)
See Also