Sha256: 8dbd68bb1ddd12a33997c794cf136129706f41a571a612e0234409174d81044f
Contents?: true
Size: 860 Bytes
Versions: 114
Compression:
Stored size: 860 Bytes
Contents
# frozen_string_literal: true require "action_view/helpers/tags/placeholderable" module ActionView module Helpers module Tags # :nodoc: class TextField < Base # :nodoc: include Placeholderable 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 } unless field_type == "file" add_default_name_and_id(options) tag("input", options) end class << self def field_type @field_type ||= name.split("::").last.sub("Field", "").downcase end end private def field_type self.class.field_type end end end end end
Version data entries
114 entries across 106 versions & 7 rubygems