Using the following code...
The numeric text box is formatted exactly how I want, but if I type in "0.005", then I click somewhere else, the text box changes to "0.01".
However if I click on it again, it changes back to 0.005, and then back to 0.01 when I click elsewhere.
<input id="${Statistic.Name}-size" type="number" value="30" class="dark" style="width: 100px; float: left;" data-bind="value: Measurement" data-role="numerictextbox" data-decimals="5" data-step="0.001" /><h1 data-bind="text: Statistic.Name"></h1>However if I click on it again, it changes back to 0.005, and then back to 0.01 when I click elsewhere.