Skip to main content

NumberBoxBuilder.ShowSpinButtons(Boolean) Method

Specifies whether to show the buttons that change the value by a step. Mirrors the client-side showSpinButtons option.

Namespace: DevExtreme.AspNet.Mvc.Builders

Assembly: DevExtreme.AspNet.Core.dll

Declaration

public NumberBoxBuilder ShowSpinButtons(
    bool value
)

Parameters

Name Type Description
value Boolean

The option value.

Returns

Type Description
NumberBoxBuilder

A reference to this instance after the method is called.

Remarks

Use the following notation to set the option’s value:

@(Html.DevExtreme().NumberBox()
    .ShowSpinButtons(true)
)
See Also