New to Kendo UI for jQueryStart a free 30-day trial

Max

methods

Gets or sets the max value of the widget.

Parameters:valueNumber | String

The max value to set.

Returns:Number

The max value of the widget.

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

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

var max = numerictextbox.max();

/* The result can be observed in the DevTools(F12) console of the browser. */
console.log(max);
</script>
<input id="numerictextbox" />
<script>
$("#numerictextbox").kendoNumericTextBox();

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

var max = numerictextbox.max();

numerictextbox.max(10);
</script>
Not finding the help you need?
Contact Support