Sha256: c8820b1e235fa6330d6cf56b525a6568ada387f615d28a8c52770bfa8c7e081c

Contents?: true

Size: 822 Bytes

Versions: 67

Compression:

Stored size: 822 Bytes

Contents

module ActionView
  module Helpers
    module Tags # :nodoc:
      class TextField < Base # :nodoc:
        def render
          options = @options.stringify_keys
          options["size"] = options["maxlength"] unless options.key?("size")
          options["type"] ||= field_type
          options["value"] = options.fetch("value") { value_before_type_cast(object) } unless field_type == "file"
          options["value"] &&= ERB::Util.html_escape(options["value"])
          add_default_name_and_id(options)
          tag("input", options)
        end

        class << self
          def field_type
            @field_type ||= self.name.split("::").last.sub("Field", "").downcase
          end
        end

        private

        def field_type
          self.class.field_type
        end
      end
    end
  end
end

Version data entries

67 entries across 67 versions & 4 rubygems

Version Path
actionview-4.1.16 lib/action_view/helpers/tags/text_field.rb
actionview-4.1.16.rc1 lib/action_view/helpers/tags/text_field.rb
actionview-4.1.15 lib/action_view/helpers/tags/text_field.rb
actionview-4.1.15.rc1 lib/action_view/helpers/tags/text_field.rb
actionview-4.1.14.2 lib/action_view/helpers/tags/text_field.rb
actionview-4.1.14.1 lib/action_view/helpers/tags/text_field.rb
angular-rails4-templates-0.4.1 vendor/ruby/2.1.0/gems/actionview-4.1.13/lib/action_view/helpers/tags/text_field.rb
angular-rails4-templates-0.4.0 vendor/ruby/2.1.0/gems/actionview-4.1.13/lib/action_view/helpers/tags/text_field.rb
angular-rails4-templates-0.3.0 vendor/ruby/2.1.0/gems/actionview-4.1.13/lib/action_view/helpers/tags/text_field.rb
actionview-4.1.14 lib/action_view/helpers/tags/text_field.rb
actionview-4.1.14.rc2 lib/action_view/helpers/tags/text_field.rb
actionview-4.1.14.rc1 lib/action_view/helpers/tags/text_field.rb
actionview-4.1.13 lib/action_view/helpers/tags/text_field.rb
actionview-4.1.13.rc1 lib/action_view/helpers/tags/text_field.rb
actionview-4.1.12 lib/action_view/helpers/tags/text_field.rb
actionview-4.1.12.rc1 lib/action_view/helpers/tags/text_field.rb
actionview-4.1.11 lib/action_view/helpers/tags/text_field.rb
actionview-4.1.10 lib/action_view/helpers/tags/text_field.rb
actionview-4.1.10.rc4 lib/action_view/helpers/tags/text_field.rb
actionview-4.1.10.rc3 lib/action_view/helpers/tags/text_field.rb