step

Gets or sets the step value of the widget.

Parameters

value Number | String

The step value to set.

Returns

Number The step value of the widget.

Example - get the step value of the NumericTextBox

<input id="numerictextbox" />
<script>
$("#numerictextbox").kendoNumericTextBox();

var numerictextbox = $("#numerictextbox").data("kendoNumericTextBox");

var step = numerictextbox.step();

/* The result can be observed in the DevTools(F12) console of the browser. */
console.log(step);
</script>

Example - set the step value of the NumericTextBox

<input id="numerictextbox" />
<script>
$("#numerictextbox").kendoNumericTextBox();

var numerictextbox = $("#numerictextbox").data("kendoNumericTextBox");

var step = numerictextbox.step();

numerictextbox.step(0.5);
</script>
In this article