Class: ActionView::Helpers::AttributeBuilders::RadioButton
- Includes:
- Tags::Checkable
- Defined in:
- lib/actionview_attribute_builders/attribute_builders/radio_button.rb
Overview
:nodoc:
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
- #html_attributes ⇒ Object
-
#initialize(object_name, method_name, template_object, tag_value, options) ⇒ RadioButton
constructor
A new instance of RadioButton.
Constructor Details
#initialize(object_name, method_name, template_object, tag_value, options) ⇒ RadioButton
Returns a new instance of RadioButton.
11 12 13 14 |
# File 'lib/actionview_attribute_builders/attribute_builders/radio_button.rb', line 11 def initialize(object_name, method_name, template_object, tag_value, ) @tag_value = tag_value super(object_name, method_name, template_object, ) end |
Instance Method Details
#html_attributes ⇒ Object
16 17 18 19 20 21 22 23 24 |
# File 'lib/actionview_attribute_builders/attribute_builders/radio_button.rb', line 16 def html_attributes = @options.stringify_keys ["type"] = "radio" ["value"] = @tag_value ["checked"] = "checked" if input_checked?() add_default_name_and_id_for_value(@tag_value, ) return end |