Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
838 views

Rails 3 - How to send data on link_to :remote=>true?

I am trying to figure out the new link_to in Rails 3 but i still don't get it In Rails 2 I do: <%= link_to_remote "My ...
3
votes
1answer
207 views

Link_to_remote with Nested Routes

I'm trying to figure out how to structure my path on a link_to_remote tag to accommodate nested routes. I have an article model that belongs to a group model, and the article has votes associated with ...
2
votes
3answers
254 views

Double remote call with jQuery Address plugin and Rails 3 remote links

I'm using this jQuery plugin http://www.asual.com/jquery/address/ because I have a full ajax site hacked in Rails 3.1.0 but my actions/methods also respond to html requests. so if I have a link ...
2
votes
1answer
2k views

Rails 3 Link_to :remote is not triggering RJS

I'm working to setup an AJAX action in rails 3 with the following code. The AJAX part of the code seems to work, but it does not request the correct file and my respond_to serves it the regular HTML. ...
2
votes
2answers
1k views

Missing template after link_to_remote

I'm using link_to_remote to update a partial on my page. The problem is that Rails isn't finding my partial. I am specifying the full path to my partial(an html.erb file) in the controller method: ...
1
vote
0answers
428 views

render :update on Rails 3.1.0 gives me Missing Template update

I'm working with rails 3.1.0 and this is my first application on 3.1.0 I have a remote link: link_to "my link",{:controller=>"my_controller",:action=>"my_action"},:remote=>true and in ...
1
vote
1answer
576 views

Rails3 - How to send Javascript Variable to a controller's action with the link_to helper?

If i have the following javascript code var myVar = 0; function setNewValforVar(newValue){ myVar = newValue; } and i'm calling setNewValforVar function n times so when I click on a link it'd ...
1
vote
1answer
956 views

Ruby on Rails, update div on click with link_to_remote

I'm implementing a netflix-like 5 star review ratings. The goal is to have a "rating" div that serves both to enter the rating by clicking on one of the stars, as well to display the current rating. I ...
1
vote
4answers
967 views

(Rails) Using “link_to_remote” in conjunction with a popup/popout window…?

What is the most straightforward mechanism by which to "link_to_remote" and popout a window with the data? I need "link_to_remote" because I need to pass certain data along with the url without ...
1
vote
1answer
1k views

How do I get a Rails link_to_remote tag to make a DELETE request when JavaScript is disabled?

I'm using the following code as a link to delete a todo in a simple todo list application I'm making: <%= link_to_remote 'delete', {:url => complete_todo, :confirm => 'Are you sure?', ...
1
vote
2answers
928 views

Passing object from view to controller

Is there a way to pass a object, specifically a form_builder object used in a view, to an action in the controller? I am using a link_to_remote and want to update a variable in the controller and then ...
0
votes
1answer
18 views

“data-type” argument in link_to

Is there any shortcut for: link_to 'title', path, 'data-type' => :html I thought :type=>:html would work, much as :remote=>true transforms to data-remote='true', but not supported.
0
votes
1answer
32 views

Can't get rjs to work right, maybe issue with difference between link_to_remote and link_to with :remote => true

I am having problems setting rjs up and I don't know the right way to code this for rails 2.3.14 Are they (link_to_remote and link_to with :remote > true) the same or do they reflect rails versions or ...
0
votes
1answer
31 views

Element.update rjs error while using link_to_remote in rails

I am using rails 2.3.2 I have a link_to_remote functions <%= link_to_remote "Comments ", { :url => {:controller => "blogs",:action => "fetchcomments",:id => blog.id}} ...
0
votes
0answers
18 views

link_to with response

I am using rails 3.0.1 and using link_to method with :remote=>true parameter ,Now I need to get the response form the that same link when user click on that link. As i was able to do in old version ...
0
votes
1answer
155 views

link_to_remote not defined in vanilla Rails app

I'm getting into Ajax, obviously using Prototype, and just getting to the point of switching from link_to to link_to_remote (because I want to make a background request of the server). The problem? ...
0
votes
1answer
190 views

Rails link_to_remote documentation

Hi I am new to rails. Where can I find the API reference for 'link_to_remote' helper in Rails API documentation.
0
votes
1answer
144 views

Rails 3: How to prevent users to change the database by typing a URL?

I have the following link: link_to("Toggle", "/jobs/#{job.id}/toggle_is_money_paid", :remote => true) which toggles the is_money_paid field of a job using an Ajax request: def ...
0
votes
1answer
242 views

Symfony confirm message if a condition is true (submit_to_remote)

I made a radiobutton based form in Symfony. I'd like to make a confirm message, IF a radio button checked. This is my code, but it's not exactly what I want: <?php echo ...
0
votes
1answer
221 views

confusion using rjs for a link_to_remote

My application layout contains a navigation div, and a content div constructed as a partial. I want to use ajax so that whenever a person clicks on a link in the navigation div, the contents of that ...
0
votes
1answer
348 views

Prevent Rails link_to_remote multiple submits w Javascript

In a Rails project I need to keep a link_to_remote from getting double-clicked. It looks like :before and :after are my only choices - they get prepended/appended to the onclick Ajax call, ...
0
votes
1answer
240 views

apply link_to_remote from a jQuery handler in Rails

I have a game with 5 boxes and when a box is clicked I want to send an ajax request to a controller that in effect is exactly like link_to_remote. I need to send a hash of informatoin to a definition ...
0
votes
1answer
92 views

How can I update an association (has_one) in a Rails AR using link_to_remote?

This is what I have in my view: <%= link_to_remote "Responded - Positive", :url => contact_path(@contact, :status => 'positive response'), :update => "status" %> This ...
0
votes
1answer
144 views

How do I update a :has_one value through link_to_remote?

I want to be able to change value for the :status_contact for the model Contact (has_one :status_contact Here is the snippet with the link_to_remote: <%= link_to_remote "Responded - ...
0
votes
2answers
153 views

Rails link_to_remote rendering nothing, why?

RoR newbie here. Working the "play time" exercises at the end of Agile Web Dev with Rails, chapter 9. Can't get link_to_remote to generate a link for me in a partial. My store_cart_item.html.erb ...
0
votes
1answer
732 views

How to get link_to_remote work with jQuery? Ajax is not defined error

I'm using Ruby on Rails with jQuery and trying to do the following: <%= link_to_remote (image_tag("delete.png"), :url => { :action => 'remove_candidate', :id => candidate }) %> ...
0
votes
1answer
246 views

How do I use link_to_remote with a form as the remote URL?

I want to render a form (fields and includes a submit button) when using link_to_remote -- the form appears via an ajax call. I'd like that form to behave as any other form would (it's a basic New ...
0
votes
1answer
103 views

Expanding a row in a div-based table

I have a stack of <div> elements that show a name. I'd like to include a + link off to the side of each <div> that, when clicked, expands the <div> and adds more detailed information ...
0
votes
2answers
313 views

How do I use link_to_remote to pass then render a partial in rails?

I want to create several link_to_remote links that are campaign names: <% @campaigns.each do |campaign| %> <!--link_to_remote(name, options = {}, html_options = nil)--> <%= ...
0
votes
1answer
1k views

How to :update after :success with link_to_remote Rails method?

I'm trying to get two things done after a user clicks on a link: Delete a div Add another element at the bottom of the page I played with Rails link_to_remote and what I get with the code below is ...
0
votes
2answers
716 views

jquery onclick function not firing with rails link_to_remote

In the js file of the page, inside $(document).ready(function() {}) I have $(".school a").live("click", function (e){ e.preventDefault(); ....; jsFunc(param1, param2, param3); }); Now the ...
0
votes
1answer
1k views

Symfony problem with jq_link_to_remote

Hy, I'm using jq_link_to_remote function to load in a div a form to do answers to a comment (like in facebook). My problem is that i call this form like that 'social/respond/id/14' where id content ...
0
votes
2answers
883 views

link_to_remote in rails, problem pass :id

i have problem use link_to_remote link_to_remote document example say link_to_remote "Delete this post", :update => "posts", :url => { :action => "destroy", :id => post.id } this ...
0
votes
2answers
79 views

Issues using a link_to_remote to change the state of the database?

anyone know of any issues using a link_to_remote to change the state of the database? I'm taking about issues with spiders, google accelerator etc. Twitter seems to do it with no problem. Thanks
0
votes
2answers
775 views

Is there a :disable_with equivalent for link_to_remote?

I have a link_to_remote and I want to make sure people can only click it once while waiting for it to return. Is there a good way to disable it after someone clicks it? (Changing the text of the ...
0
votes
1answer
60 views

Strange routing problem in link_to; gotta be something simple

My brain is fried trying to squeeze some work in before the holiday. I'm trying to fix a simple bug. The URLs that the following link_to_remote is creating are wrong: options = { :url => { ...
0
votes
3answers
886 views

conditional :confirm in link_to_remote

I have a Rails app where I was doing a general delete dialog with "are you sure" before it gets deleted. That's all fine, but I also have a small ajax on click to remove the block containing all the ...
0
votes
2answers
606 views

rails how to call another controller in link_to_remote

how to call a different controller's action using link_to_remote :url => {:controller => "Posts", :action => "update"} doesn't work
0
votes
1answer
2k views

remote_form_for in rails with the :with option

Is it possible to use the :with option with remote_form_for? It works with link_to_remote, and the api docs seems to indicate :with should work with any of the remote_ methods. Here is the code ...
0
votes
1answer
486 views

(Rails) How do you replace the text of a “link_to_remote” without breaking the link?

Is there a quality way to update the text inside a "link_to_remote" and leave the link functional? Basically I have two links: <%= link_to_remote "(#{building.charts.size} Charts)",{:url => ...