Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 5th, 2012  |  syntax: None  |  size: 0.22 KB  |  hits: 12  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. How can I validate a radio button?
  2. .<% @votes.each do |vote| %>
  3.  
  4.    .<%= radio_button_tag "escolha", "#{vote.id}" %>
  5.  
  6. .<% end %>
  7.        
  8. class Myvotes < ActiveRecord::Base
  9.       validates :votes, :presence=> true
  10.     end