Flowdock
method

input_checked?

Importance_0
v4.2.1 - Show latest stable - 0 notes - Class: Checkable
input_checked?(object, options) public

No documentation

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

Hide source
# File actionview/lib/action_view/helpers/tags/checkable.rb, line 5
        def input_checked?(object, options)
          if options.has_key?("checked")
            checked = options.delete "checked"
            checked == true || checked == "checked"
          else
            checked?(value(object))
          end
        end
Register or log in to add new notes.