restrictDecimals Boolean
(default: false)
Specifies whether the decimals length should be restricted during typing. The length of the fraction is defined by the decimals
value.
Example
<input id="numerictextbox" />
<script>
$("#numerictextbox").kendoNumericTextBox({
decimals: 3,
restrictDecimals: true
});
</script>