options Object

An object, which holds the options of the widget.

Example - get options of the widget

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

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

var options = numerictextbox.options;
<script>
In this article