DropDownButtonItemBuilder.Badge(String) Method
Specifies the text of a badge displayed for the list item. Mirrors the client-side badge option.
Namespace: DevExtreme.AspNet.Mvc.Builders
Assembly: DevExtreme.AspNet.Core.dll
Declaration
public DropDownButtonItemBuilder Badge(
string value
)
Parameters
| Name | Type | Description |
|---|---|---|
| value | String | The option value. |
Returns
| Type | Description |
|---|---|
| DropDownButtonItemBuilder | A reference to this instance after the method is called. |
Remarks
Use the following notation to set the option’s value:
@(Html.DevExtreme().DropDownButton()
.Items(items => {
items.Add().Badge("Badge text");
})
)
See Also