Ruby on Rails Sunday, August 1, 2010

I have created some radio boxes as follows:

<% f.radio_button :usertype, "false" %>False
<% f.radio_button :usertype, "true" %>True

where usertpe is a boolean in the db

I want to be able to create a default selection and I want to validate
the options and ensure that for whatever reason there is always a check
in one of the boxes...now I know a proper radio box config will always
have one option selected. How do I validate? For example
validates_prescence_of: usertype?
--
Posted via http://www.ruby-forum.com/.

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

No comments:

Post a Comment