Class: Chop::Form::Checkbox
- Inherits:
-
Field
- Object
- Struct
- Field
- Chop::Form::Checkbox
show all
- Defined in:
- lib/chop/form.rb
Instance Attribute Summary
Attributes inherited from Field
#field, #label, #path, #session, #value
Instance Method Summary
collapse
Methods inherited from Field
candidates, for, from
Instance Method Details
#fill_in! ⇒ Object
144
145
146
|
# File 'lib/chop/form.rb', line 144
def fill_in!
field.set value.present?
end
|
#get_value ⇒ Object
148
149
150
|
# File 'lib/chop/form.rb', line 148
def get_value
field.checked? ? "✓" : ""
end
|
#matches? ⇒ Boolean
140
141
142
|
# File 'lib/chop/form.rb', line 140
def matches?
field[:type] == "checkbox" && !field[:name].to_s.end_with?("[]")
end
|