Displaying 1 result from an estimated 1 matches for "receive_offers".
2010 Nov 23
5
ActiveRecord not getting true value from checkbox
I have a checkbox tag as follows:
<%= f.check_box :receive_offers %>
When I view source in the html, I see the value of the checkbox is "1",
with the normal hidden field value of "0". However, after posting the
form and saving to the database, the Mysql column, which is a TinyInt,
is ALWAYS 0.
I''ve tried it with true/false value...