Search code examples
angularjsmean-stackx-editable

How to allow editable-number to decimal in angularjs


hi all i am using angularjs editable-number it's only allow number to enter but my need is it's allows decimal also it's not allow to enter decimal values help how to solve this problem

<a href="#" editable-number="user.number"></a>

Solution

  • Set the e-step attribute to "any":

    <a href="#" editable-number="user.number" e-step="any">{{user.number || 'Enter number'}}</a>