Having some issues with the Kendo UI numeric text box. Specifically, it doesn't seem to work properly when using a step value of 0.001. In the example code snippet below, I managed to get it to increment by 0.001 with HTML5 but couldn't make it work with Kendo UI. If I change the step value to 0.01, everything functions as expected. Any insights on why this happens or any potential solutions?
<input type="number" id="inputN" value="1.010" step="0.001" style="width: 100px;" />
<input id="inputNum" value="1.010" />
<script type="text/javascript">
$(document).ready(function () {
$('#inputNum').kendoNumericTextBox({
format: '#.000',
step: 0.001
});
});
</script>