ContextMenuShowSubmenuModeBuilder.Name(ShowSubmenuMode) Method
Specifies the mode name. Mirrors the client-side name option.
Namespace: DevExtreme.AspNet.Mvc.Builders
Assembly: DevExtreme.AspNet.Core.dll
Declaration
public ContextMenuShowSubmenuModeBuilder Name(
ShowSubmenuMode value
)
Parameters
| Name | Type | Description |
|---|---|---|
| value | ShowSubmenuMode | The option value. |
Returns
| Type | Description |
|---|---|
| ContextMenuShowSubmenuModeBuilder | A reference to this instance after the method is called. |
Remarks
Use the following notation to set the option’s value:
@(Html.DevExtreme().ContextMenu()
.ShowSubmenuMode(mode => mode
.Name(ShowSubmenuMode.OnClick)
)
)
See Also