Flowdock
method

render

Importance_0
v4.0.2 - Show latest stable - 0 notes - Class: RadioButton
render() public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionpack/lib/action_view/helpers/tags/radio_button.rb, line 14
        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
Register or log in to add new notes.