On Dec 16, 2008, at 4:13 PM, The Neurochild wrote:
> Hello...
>
> I have a form with 3 buttons, each with a different functionality
> concerning to forum user information. Once it's shown in the form, you
> can:
>
> * Modify your information
> * Print your info (via Prawn)
> * Delete the user
>
> But I only have one form, and I need every button to do a different
> action. Can you please help me find something to make it work?
>
> Greetings
>
> The Neurochild

The first one is clearly a submit button, but the other two could be  
link_to_function, button_to_function, link_to_remote, or  
button_to_remote.  Those wouldn't be 'in' the form.  (Actually, the  
Delete the User could be a
   link_to('Delete', user_path(@user), :method => :delete,
           :confirm => "Really delete #[email protected]}?\n(There is no  
undo!)")
or similar.)

You can get the name of the submit input activated, too, if you need  
to make a choice about what happens next.  (I.e., "Complete Order" or  
"Change Shipping Address")

-Rob

Rob Biedenharn          http://agileconsultingllc.com
[email protected]



--~--~---------~--~----~------------~-------~--~----~
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