min

Gets or sets the min value of the widget.

Parameters

value Number | String

The min value to set.

Returns

Number The min value of the widget.

Example - get the min value of the NumericTextBox

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

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

var min = numerictextbox.min();

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

Example - set the min value of the NumericTextBox

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

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

var min = numerictextbox.min();

numerictextbox.min(10);
</script>
In this article