link_to is the method in Ruby on Rails that is used to create link tags within views.

learn more… | top users | synonyms

0
votes
1answer
28 views

Ember.js #linkTo not pulling correct property from context for dynamic segment

The linkTo helper is creating <a> tags with an href that looks like this. <a id="ember561 class="ember-view" href="/orgs/<Organization:ember349:17>"> The url is actually the ...
0
votes
1answer
23 views

link_to update for a nested resource not working

The link in _applicant.html.erb looks like this in the browser: http://localhost:3000/needs/3/applicants.1 and when clicked on this shows up in the browser: Routing Error No route matches [PUT] ...
0
votes
1answer
13 views

Rails link_to path variable convention?

Sorry, this is a naive question. I have a nested resources depth 2 levels. resources :programs do resources :questions do resources :answers end end So for the index,edit, etc ...
0
votes
1answer
9 views

Ruby on Rails: link_to :remote=> true still navigating.

I'm new to rails, and I'm trying to perform an ajax request. Correct me if I'm wrong, but as I understand it, requests are supposed to be performed with a link_to using :remote true. I have this ...
0
votes
2answers
16 views

How to pass id from link_to to locals?

I m passing the id from link_to to locals. But it is not able to find the result, saying cannot find article without id. I need to pass the id for display articles in modal. <% @articles.each do ...
0
votes
3answers
22 views

link_to image_tag with options (rel, title)

In HTML I would write <div class="imageRow"> <div class="single"> <a href="image.jpg" rel="lightbox" title="my caption"> <img alt="" ...
0
votes
1answer
17 views

Link_to helper method to include icon within a element [closed]

Here's what the default scaffolding generates: <%= link_to 'Delete', admin_user, method: :delete, data: { confirm: 'Are you sure you want to delete?' } %> I want to create a helper method so ...
0
votes
1answer
33 views

Rails, named route with regexp doesn't work

I have following problem and I can't understand why it's doesn't work: I have routes: get "/:id" => 'landings#show_direct', as: :direct_landing, id: /ticket-from-[a-zA-Z0-9_]+/ get "/:id" => ...
0
votes
1answer
30 views

Ruby on Rails: Linking to resource show page results in No Route Matches

I have been working on my first project in rails and have stumbled across a problem while using tags. I have it working so when the user clicks a tag it shows all entries associated with that tag. ...
0
votes
1answer
11 views

Setting a value sent from a link_to a partial in another view

So i have this link from a partial in a view: <td><%= link_to 'Inscribir Ejemplares en la Carrera', home_carreras_path(@race, :meeting_id => meeting.id) %></td> That link sends ...
0
votes
1answer
18 views

How to link to a pdf from a png with Rails?

I have an image of a map.png file on part of a page. I would like this image to be clickable, and then to download the pdf version of that image. I've been using this as a reference Rails 3.1, ...
1
vote
1answer
28 views

Rails link to file in public folder

I have a file data.txt in the public folder of my Rails project. I want to link to it from one of the pages in my project using link_to. How can I do it? If I do <%= link_to "here", "data.txt" ...
0
votes
2answers
45 views

How do I defined a variable link_to to an external URL

On my site a user has a personal profile with a link to his personal external website. The url of the sites I store in a postgresql database under the name website. When I test the result, I always ...
0
votes
1answer
23 views

How to pass the UI control values as the parameters to the Controller in Rails?

I met a problem of parameter passing in Rails. I have an object named 'account' and another object named 'locale'. There is a one-to-many relationship between them. One locale can be mapped with ...
0
votes
5answers
84 views

How to add confirm message with link_to Ruby on rails

I wanted to add confirmation message on link_to function with Ruby. = link_to 'Reset message', :action=>'reset' ,:confirm=>'Are you sure?' Any ideas why it's not working?
0
votes
0answers
62 views

Ruby on Rails 3.2.13 - Rewriting iView Slider jQuery Obtrusive Code

I want to implement something similar to the Regular with API example where you can click the thumbnails and the slider scrolls to the picture clicked and links to scroll back and forth. ...
0
votes
1answer
42 views

undefined local variable or method on link_to in rails

Thats the link_to <%= link_to('Dashboard', dashboard_index) do %> <i class="icon-play"></i> <% end %> Thats the corresponding rake routes entry. dashboard_index GET ...
1
vote
2answers
29 views

Rails, link_to helper with an URL as a param

I want to generate the next html link: <a href="http://url.com">http://url.com</a> To reproduce it using the link_to helper I have to write: <%= link_to "http://url.com", ...
0
votes
1answer
29 views

Passing parameters in link_to tag - rails 3 throwing error

In my Rails application, I have a link_to field with the parameters, but it is not going to the action specified. Is there anything wrong with the format of link_to given below. <%=link_to "Add ...
0
votes
0answers
20 views

Rails link_to passing wrong id

I'm using the link_to helper and passing in the id of an object and when I view the html the link has the correct id in it. However, when I click the link, the id param passed to the controller is ...
0
votes
1answer
31 views

How to implement this nested linked_to_function?

In my view I want the user to be able to browse a catalog of products. The hierarchy is as following: Category Product AdditionalInfoForm In my main view I render a partial for the ...
0
votes
0answers
38 views

Force rails to ignore “real” path in link_to

I am using rails on an Apache server. I can't install my rails app on the public root directory. So I have it on /web. With an .htaccess I rewrite any URL from / to /web. For example /something will ...
0
votes
0answers
23 views

why isn't link_to rendering in Mailer View on Rails 3?

on my mailer view I have: Once I receive the email, the body contains a plain raw , for example: <a href="http://mysite.com/token/123123123123123">Read More</a> Why it is not ...
1
vote
1answer
41 views

Path form string with param

i need a good way to create a set of Rails 3 paths from array, in the link_to helper. I have: TITLES = ['foo', 'bar', 'baz'] TITLES.each do |t| = link_to t, (.....path....) This way i need to ...
0
votes
4answers
35 views

Simple Rails issue about link_to

I have code that looks like this that I need to understand: <ul class="dropdown-menu"> <li><%= link_to t('menubar.yes.okay') , admin_ok_path %></li> </ul> In this ...
0
votes
1answer
29 views

URLs wrongly formatted when sending emails. Rails 3.2

I have managed to send emails (gmail) from my Rails 3.2 application with no apparent problems. However, the urls genrated in email have the :id param wrongly positioned. NotificationMailer default ...
0
votes
1answer
73 views

Empty item at end of .each loop because of rails cycle method

I have this list that should show all activities inside a category, and it sort of works but the last element that is displayed is strange. There are 4 activities in the DB for this particular ...
0
votes
2answers
62 views

user_path(user) undefined local variable or method `user'

I'm trying to add a Profile page for the users of my App. I followed railscasts 250 & 274 to set up my user authentication & added the below to get a user profile. users/show.html.erb ...
1
vote
1answer
80 views

Truncate text and link to Read more

Come across a little stumbling block when linking to a post within my app. I am truncating the text of a post and providing a 'Read More' link. There are 2 areas where posts are viewed, one for ...
0
votes
1answer
56 views

Rails link_to parameters dictating flow of control in controller

So I've been struggling a little in trying to understand exactly what I can do with a link_to in Rails. Some of what I've found is old, some is new, some is very different looking from what I've got. ...
0
votes
1answer
37 views

Why are my HAML named routes empty?

I'm trying to create some pages in HAML, which are partly working. The HTML that it produces is correct, apart from one thing. Where I have: %ul#menu %li = link_to 'Home', root_url I am ...
3
votes
1answer
68 views

link_to check a checkbox

I have the following code and would like it so that you can click on "delete" it will check the checkbox. Is there a simple solution for this? I can't figure out how to do it with link_to. <%= ...
1
vote
3answers
81 views

:confirm in rails not working

I just started coding in ruby on rails and I've been following a guide which is using a more outdated version of rails than I am using. I am using 3.2.12 This is my code: <%= button_to ...
0
votes
1answer
70 views

on link_to click replace a section content with ajax

I have this link in view/users/show: <%= link_to "Photos (#{@user.photos.count})", user_path(@user), id: "photo_link", remote: true %> Now when I click the above link I want to change [1..6] ...
1
vote
0answers
56 views

:disable_with is not working with multiple buttons

With a button :disable_with is working fine. <%= link_to change_status_path(post), :class => "btn btn-large btn btn-danger", :disable_with => "<i class=\"icon-eye-close\"></i> ...
0
votes
2answers
100 views

passing id parameter from show action to new action via link_to, rails

I have some show action that displays one category. But from there I want via link to create new product. Point is that I passed category id and name via link_to. It goes well, it opens Product/new ...
1
vote
1answer
49 views

Passing parameters in a link_to

Ok this one is going to sound really trivial but I can't seem to get it right. I just want to pass a parameter :invite_code with the link_to from the view to an un-related controller. view: ...
0
votes
2answers
91 views

How can i add parameter to the given url which is dynamic in rails

I have page having url http://localhost:3000/athletes/list When user search on this page it changes to something like ...
0
votes
2answers
107 views

Rails link_to static pages issue

I don't know an awful lot about Rails and I've inherited this project. For the past few days I've been trying to get my head around, 'link_to', and 'routes.rb'. This stuff is driving me mad - I've ...
0
votes
2answers
75 views

Rails 3.2.7 and link_to

First of all, pretty new to Rails. I've been following a tutorial on using the 'link_to' command - basically, I have some links with text 'About Us', 'FAQ', 'Contact Us', and I want them to link to ...
1
vote
1answer
127 views

Rails path variables

If I have the following route in my Rails routes.rb file: get "time_track/check_in" What will the path variable be that I can use in my views? I assumed something like time_track_check_in_path or ...
0
votes
1answer
43 views

link_to in .js.erb file

For some reason, when I use link_to in my show.js.erb file, the javascript does not work... This works: $(".commentvotecount<%= params[:commentid]%>").html("<%= positiveVoteCount = ...
0
votes
1answer
80 views

Pass dropdown value to link_to

I have a number of link_tos, which are used to create records in the database based on the current user. I would like the current user to able to add records on behalf of other users - ex by adding a ...
2
votes
1answer
109 views

ajax, link_to remote in ruby on rails

i am new to ruby on rails. i am following a tutorial to understand how ajax works on rails using link_to and remote=true. i have the following codes. // in view/home/sample.html.erb <head> ...
0
votes
3answers
84 views

What objects should be passed to a link_to with triple nested route?

What objects should I pass to my link_to for a triple nested route? I want to retrieve the exercise show page. show.html.erb - workouts <%= link_to exercise.name, plan_workout_exercise_path(???) ...
0
votes
1answer
53 views

Controller action doesn't run with link_to function

I need to call a simple controller action through my view using link_to. In preferences > index.html.erb: <%= link_to "My link", :controller => :preferences, :action => :produces_text ...
0
votes
2answers
38 views

Can I use something other than id with link_to in my rails view?

The rails way of making links in your view is to use link_to. Passing it an object will link to that object's id. How can I use my object's match_id instead of id with link_to?
0
votes
2answers
792 views

rails link_to :remote

I have the following: <%= link_to my_path, method: :delete, confirm: 'Delete?', class: 'link-delete', 'data-message' => 'Are you sure?', 'data-severity' => 'danger', :remote => true do ...
1
vote
5answers
87 views

Controller and action within link_to image_tag don't execute controller code

My link_to looks like this: <%= link_to image_tag(user_likes_selection.page_picture, :image_id => user_likes_selection.id, :controller => :preferences_controller, :action => ...
0
votes
1answer
97 views

Click pictures and update database row on rails

I need to be able to click an image (out of a bunch of images) and update a profile table based on the image clicked. List of images in my view: <% @pages_selection.each do |pages_selection| ...

1 2 3 4 5 8