so I got a form helper in rails with a checkbox;
I want that checkbox to have values as "thatvalue" or "thisvalue" when checked or unchecked;
I haven't found anywhere how to set this up with
f.check_box :field
…
My question is similar to this one
but for a Rails app.
I have a form with some radio buttons, and would like to associate labels with them. The label form helper only takes a form field as a parameter, …
I've read this, but I'm new to RoR so I'm having a little trouble understanding it. I'm using a form to create a new request record, and all of the variables that I need to send exist already. Here is …