ToolbarItemFactory.DropDownButton() Method
In This Article
Creates a DropDownButton control that represents a toolbar item.
Namespace: DevExtreme.AspNet.Mvc.Factories
Assembly: DevExtreme.AspNet.Core.dll
#Declaration
C#
public DropDownButtonBuilder DropDownButton()
#Returns
Type | Description |
---|---|
Drop |
An instance of Drop |
#Remarks
@(Html.DevExtreme().Toolbar()
.Items(items => {
items.Add()
.Widget(w => w.DropDownButton()
// call methods in a chain to customize the control
);
})
)
See Also