Hi
How can i use link_to in form to pass an already fetched row of a
table to an action.I can pass it by :id...But in action i have to again
use the find method to get the rows again
in show.rhtml I have
<%= link_to ''Edit Resolution'', :controller =>
''service_desk'',:action =>
''define_sd_resolution_ui'', :id => @sd_ticket %>
Here @sd_ticket contains title ,owner etc..Which i can print in the
show.rhtml like
@sd_ticket.title
@sd_ticket.owner
How can I pass the entire @sd_ticket to action define_sd_resolution_ui
?(rather by using :id)..If I use the above link to then again i have to
get data using find
again
Pls help
Sijo
--
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-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
To unsubscribe from this group, send email to
rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
For more options, visit this group at
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---
Keynan Pratt
2008-Jan-25 06:38 UTC
Re: link_to to pass an entire row of a table rather than by
you could include all the attributes in your route, you could put it in the session, At the end of the day your best option is to call ''find'' again like you are now. -- 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-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---