[Rails] Re: Nested Attributes and Radio Buttons -- any way to do this?

2012-12-27 Thread Gauthier D.
Walter Davis wrote in post #1090281: > On Dec 26, 2012, at 12:56 PM, Gauthier D. wrote: > >> don't have an ID yet (with cocoon/railscasts way nested forms handling). >> >> I've asked a question about the same issue here : >> > http://stackoverflow.com/qu

[Rails] Re: Nested Attributes and Radio Buttons -- any way to do this?

2012-12-26 Thread Gauthier D.
Samantha John wrote in post #1032986: > I'd recommend creating an attr_accessor for :primary on your Title > model. > In your form you could do something like: > f.object.roles.each do |role| > f.radio_button :primary, :role.id > f.label :primary > > which should have the desired behavior. This