On Oct 16, 12:01 am, Teresa Mcmillin <[EMAIL PROTECTED]
s.net> wrote:
>     <td><%= radio_button("company", "default_company", true) %>

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


> </tr>
>   <% end %>
>   </table>
>   <%= submit_tag "Change Default" %>
> <% end %>
>
> From this list, the user is allowed to change the default company and
> click on a button (implemented with a submit tag, which calls a method
> in the controller).  The radio buttons are the only editable field on
> this form.
>
> Question:  How do I get the necessary values back to the controller?
> Currently, I only get the selected radio button, but not the associated
> company data.
>
> TIA,
>
> TMac
> --
> Posted viahttp://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
-~----------~----~----~----~------~----~------~--~---

Reply via email to