Created
July 10, 2011 02:51
-
-
Save rumblestrut/1074196 to your computer and use it in GitHub Desktop.
Option buttons for forms
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="field"> | |
| <%= f.label :state %><br /> | |
| <% states = { 'Kansas' => 'KS', 'Missouri' => 'MO', 'Nebraska' => 'NE' } %> | |
| <% list = states.sort | |
| list.each {|x| %> | |
| <%= f.radio_button :state, x[1] %> <%= h(x[0]) %> <br /> | |
| <% } %> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment