How do I make a text field accept only numeric values? If I press a letter or a symbol, the text field should not be filled, it should only allow numbers.
Is there a rails way to do this?
|
How do I make a text field accept only numeric values? If I press a letter or a symbol, the text field should not be filled, it should only allow numbers. Is there a rails way to do this?
| ||||
|
feedback
|
|
On the server side validate numericality:
and on the client side, add an input mask via javascript https://github.com/ruoso/jquery-regex-mask-plugin
| |||
|
feedback
|
|
Use http://apidock.com/rails/ActionView/Helpers/FormTagHelper/number_field_tag | |||
|
feedback
|