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 t
ok nevermind, I misunderstood the "options" field...
the answer is simply
<%= f.check_box :field, {:class => "myclass", :style => "mystyle"}, "checked-value", "unchecked-value" %>
and it works perfectly :)