Sha256: 3318507be131329eac758177592ebabdf4109244f4d28b6dfe71cdb5d2aeb421
Contents?: true
Size: 876 Bytes
Versions: 44
Compression:
Stored size: 876 Bytes
Contents
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(object) } unless field_type == "file" yield options if block_given? 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
44 entries across 43 versions & 8 rubygems