link_to is the method in Ruby on Rails that is used to create link tags within views.
0
votes
1answer
13 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
24 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
19 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
19 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
29 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
31 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
13 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
30 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
30 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
25 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
59 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
38 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
60 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
39 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
34 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
48 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
62 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
56 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
47 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
73 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
44 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
82 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
71 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
59 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
85 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
31 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
69 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 ...
1
vote
1answer
83 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
74 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
48 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
32 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
300 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
80 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
78 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| ...
0
votes
2answers
165 views
Rails - passing parameters in link_to to hidden form field for id
I've got an application where the user can set up a folder to keep notes in. What I had previously was a hidden form field to store the id of the person who created it, i.e.:
<%=f.hidden_field ...
0
votes
1answer
26 views
Rails link_to for other user's account
I have an app set up where a user can nominate a keyholder who will have read-only access to some of their account. The keyholder is just a user with a keyholder boolean field set to true. They also ...
0
votes
1answer
29 views
Routing error even if routes exists
This is really weird. I am getting a routing error on a link_to that exists on every page
This is my route
resources :users do
member do
get :creations_tab, :path => '/creations'
...
0
votes
1answer
116 views
How to use :onclick and :confirm together in link_to Rails 3?
I am trying to hide a div on click, after confirmation from the user.
I have something like this:
<%= link_to 'X', user, :method => :delete, :remote => true, :class => 'delete_link', ...
1
vote
3answers
113 views
Rails Routing Error :action => 'new' returns error “No route matches {:action=>”show" in the controller
Model "Project" was generated by scaffolding.
config/routes.rb contains the line resources :projects.
I have a link from the index view to new_project_path.
Problem is with the link to /new. The ...
0
votes
1answer
66 views
Link_to in Rails. Link to displayed customized
I have an application, that takes a path of a file from the database and renders it to html and displays. The controller, view and routes look like the following:
project/index.html.erb
...
0
votes
2answers
251 views
Show content on link_to using hover (rails)
Currently I have a link_to that when clicked it opens a popup. I want to add a function so that when I hover on the link it shows certain content. I want to show the users who liked a post similar to ...
0
votes
1answer
54 views
Why is Rails executing action on refresh without clicking the link
I have been trying to find this answer everywhere online without luck, maybe this will help someone else.
I installed a ruby gem called socialization, which works fine.. it allows users to ...
0
votes
1answer
82 views
link_to, view, controller
I implemented this link:
View:
<li><%= link_to "Trainer-Sportler", :controller => "trainerones", :action => "trspmatch" %></li>
controller:
def trspmatch
render ...
0
votes
2answers
62 views
create a link_to in controller
I need to pass a notice to a view from controller, and I want if can to create some link also to the notice.
My controller:
format.html { redirect_to purchase_order_headers_path, notice: 'PO already ...
0
votes
1answer
47 views
Rails Dynamic variable at link_to with JS
I have form to showing all list from some filter form with js and also another button that direct to another action on the same controller BUT still carry the value of the form filter.
For the js ...
0
votes
1answer
61 views
Using variables in link_to :confirm
I want to use variables in the confirm message in link_to
<%= link_to 'DESTROY!', @user, :confirm => "are you sure you want to delete #{@user.name}"%>
this doesn't seem to work and it ...
0
votes
1answer
61 views
Ruby on Rails Custom link_to
I have a list posts, which when clicked on should show the url as posts/this+is+the+title.
After doing this, how would I catch this in the controller to fetch data from the database?
<% ...
0
votes
1answer
127 views
How to call method with params with link_to - rails 3
I have a model named School and I have a method called custom_search:
def self.custom_search( text, page, order = :asc )
search( include: [:prices] ) do
fulltext text
paginate page: ...
0
votes
1answer
23 views
Using a named route to generate a simple link using my match route format
Here are the routes I've written:
Foo::Application.routes.draw do
get "home/index"
match "/ads/:category_name" => "ads#by_category"
match "/ads/:category_name/:id" => "ads#show"
...
0
votes
1answer
53 views
I filter items using a check_box_tag helper, how do I accomplish the same filtering using the link_to helper?
I have a page where I need to send parameters so that the url looks like this:
/my_controller?stores%5BStoreName%5D=1
However, when I try to form my link_to I get this url:
...





