Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

radio button, boolean selection (See related posts)

// radio buttons generated with form helper
// selection by boolean
// attention interger numbers (0, 1) don't work
    <div class="row">
      <dl>
        <dt>Owner over 18?</dt>
        <dd>
        <%= radio_button( :guarantor, :over_eighteen.to_s, true )%> Yes &nbsp;&nbsp;
        <%= radio_button( :guarantor, :over_eighteen, false )%> No
        </dd>
      </dl>
    </div>

You need to create an account or log in to post comments to this site.


Click here to browse all 4858 code snippets

Related Posts