Sha256: 2cf539d7fd7f26aee0a32499bb14b59d7e96045afac8f0765da5334b47fb745c
Contents?: true
Size: 837 Bytes
Versions: 20
Compression:
Stored size: 837 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" 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
20 entries across 20 versions & 1 rubygems