Rails 3 - Make text field accept only numeric values

Angelo picture Angelo · Dec 12, 2011 · Viewed 28k times · Source

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?

Answer

Thong Kuah picture Thong Kuah · Dec 12, 2011

Use number_field_tag, this will generate a HTML5 number field

http://apidock.com/rails/ActionView/Helpers/FormTagHelper/number_field_tag