Sorry, to answer the original question:

> > My question is, within my UpsController.newchannel(), how do I access
> > the calue of the channel_id that has been selected in the form
> > submission?

When rails posts a form to an action, all of the info from the form
will be included in a hash called params.

In this case the hash would contain:
:ups => {:channel_id => value }

so to access it you'd use params[:ups][:channel_id]
--~--~---------~--~----~------------~-------~--~----~
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