factor Number
(default: "1")
Specifies the factor by which the value is multiplied. The obtained result is used as edit value. So, if 15
as string is entered in the NumericTextBox and the factor value is set to 100
the visual value will be 1500
. On blur the visual value will be divided by 100
thus scaling the widget value to the original proportion.
Example
<input id="numerictextbox" />
<script>
$("#numerictextbox").kendoNumericTextBox({
format: "p0",
factor: 100,
min: 0,
max: 1,
step: 0.01
});
</script>