Frederick Cheung wrote:
> that third parameter is what will appear in params[:company]
> [:default_company] so typically you set it to something like
> @company.id.
>
> Overwriting @company like that won't do you any favours, I would do
>
> <% for company in @companies %>
> <tr>
> <td><%= company.name %></td>
> <td><%= company.size %></td>
> <td><%= radio_button("company", "default_company", company.id) %>
> </tr>
> <% end %>
>
> Fred
I have changed the third parm and I see what you mean, but here is my
confusion. I thought the third parm was used for determining which
radio
button should be selected, when loading the companies from the database.
In my case, only one company has default set to true, so I put true in
the third parm. It works nicely for displaying the data.
So now the question becomes how do I set that radio button values to
correspond to the database values?
Thanks for your help.
TMac
--
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 [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---