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

About this user

Oliver Haag www.ohcon.de

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

radio button, boolean selection

// 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>
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS