enable (enable)
// get a reference to the numeric textbox
var textbox = $("#textbox").data("kendoNumericTextBox");
// disables the numerictextbox
numerictextbox.enable(false);
// enables the numerictextbox
numerictextbox.enable(true);enable: Boolean
value (value)
: Number
// get a referene to the numeric textbox
var numerictextbox = $("#textbox").data("kendoNumericTextBox");
// get the value of the numerictextbox.
var value = numerictextbox.value();
// set the value of the numerictextbox.
numerictextbox.value("10.20");value: Number | String