vote up 0 vote down star

If I am inside a form block in Rails, e.g

form_for @widget do |f|
end

and am thus able to do things such as f.text_field :attribute etc, how can I also find out what the value of different attributes are in order to carry out some display logic?

For instance, something like

form_for @widget do |f|
  f.text_field :some_property
  f.checkbox :active if ????.active
end

How can I access the properties?

flag

3 Answers

vote up 3 vote down check
form_for @widget do |f|
  f.text_field :some_property
  f.checkbox :active if @widget.active?
end
link|flag
vote up 0 vote down

f.property.active

where property is any defined method or property of your @widget or the parent of Widget (ActiveRecord usually)

link|flag
vote up 0 vote down

f.object.active etc

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.