Skip to content

Instantly share code, notes, and snippets.

@danbeaulieu
Created December 4, 2012 01:28
Show Gist options
  • Save danbeaulieu/4199691 to your computer and use it in GitHub Desktop.
Save danbeaulieu/4199691 to your computer and use it in GitHub Desktop.
# in my _form.html.haml
= check_box :product, :exempt_from_schedule_policy
# as rendered in html
<input type="hidden" value="true" name="product[exempt_from_schedule_policy]">
<input id="product_exempt_from_schedule_policy" type="checkbox" value="true" name="product[exempt_from_schedule_policy]" checked="checked">
# post params as reported by firebug
utf8=%E2%9C%93&_method=put&authenticity_token=PtM7RQILcKoIzFi77abbFbobve9KEs5q9kCfofnZ8og%3D&product%5Bexempt_from_schedule_policy%5D=true&commit=Save+%26+continue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment