Does ember provide a numeric field?
I tried using the helper {{input}}, but it doesn't seem to accept the html attributes that apply to numeric fields.
Suppose I have a property valuein my controller, and this is my template:
{{input type="number" min="1" max="10" step="1" value=value}}
min, maxand are stepignored.
I also tried:
<input type="number" min="1" max="10" step="1" {{bind-attr value='value'}}>
Attributes now work, but the binding does not work.
Any thoughts?
source
share