Flowdock
method

to_number_field_tag

Importance_0
v3.1.0 - Show latest stable - 0 notes - Class: ActionView::Helpers::InstanceTag
to_number_field_tag(field_type, options = {}) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionpack/lib/action_view/helpers/form_helper.rb, line 1016
      def to_number_field_tag(field_type, options = {})
        options = options.stringify_keys
        if range = options.delete("in") || options.delete("within")
          options.update("min" => range.min, "max" => range.max)
        end
        to_input_field_tag(field_type, options)
      end
Register or log in to add new notes.