You need to set the step attribute of the <input type="number"> to "any".
One way to solve this problem is to use the xeditable e-* syntax, where any attribute that you specify that starts with e- will be passed to the base input tag:
<a editable-number="some.object" e-step="any">{{some.object || 'Enter Number'}}</a>
Sunil D.
source share