Sha256: 0d81e8783d4d1451bfb1b6ec9030aad28f35efdd43ae23b446061a44c90cb641
Contents?: true
Size: 832 Bytes
Versions: 160
Compression:
Stored size: 832 Bytes
Contents
require 'action_view/helpers/tags/checkable' module ActionView module Helpers module Tags # :nodoc: class RadioButton < Base # :nodoc: include Checkable def initialize(object_name, method_name, template_object, tag_value, options) @tag_value = tag_value super(object_name, method_name, template_object, options) end def render options = @options.stringify_keys options["type"] = "radio" options["value"] = @tag_value options["checked"] = "checked" if input_checked?(object, options) add_default_name_and_id_for_value(@tag_value, options) tag("input", options) end private def checked?(value) value.to_s == @tag_value.to_s end end end end end
Version data entries
160 entries across 155 versions & 13 rubygems