Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
4k views

Attaching onClick event to Rails's link_to_function

How do I attach an onclick event to a link_to_function such that clicking on the event refreshes an element on the page (using partials)? When the user clicks the generated link, I'd like to refresh ...
0
votes
1answer
293 views

How to handle link_to_function in rails3

This is my code <%= link_to_function ("Add another url", :id=> "add_another_url_link_id") do |page| page.insert_html :bottom ,:add_another_url, :partial ...
0
votes
2answers
166 views

replace input button with jquery

I'm trying to replace a Submit button in a form with a javascript function. I'm able to insert the following link_to_function for submitting the form: <%= link_to_function 'Create', ...
0
votes
1answer
149 views

Nested form and link_to_function

I've got a nested form like this : <% form_for setup_training(@training), :url => admin_trainings_path, :html => { :class => :form } do |f| -%> <!-- begin of form --> <!-- ...
0
votes
2answers
321 views

Rails: Specifing params without value to link_to

Supposing the route map.resources :articles how do you get this /articles?most_popular using link_to method? tried the following: link_to articles_path(:most_popular) # exception link_to ...