Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
3answers
15k views

Ruby on rails link_to syntax

After following a tutorial Ive found. Im now redoing it again, without the scaffolding part, to learn it better. However, editing my \app\views\home\index.html.erb to contain: <h1>Rails test ...
6
votes
2answers
3k views

Rails 3 - Javascript :confirm not working for link_to and button_to with :method => :delete

In my index.html.erb file I'm trying to display the title to my object (a "listing") and the normal "show", "edit", and "destroy" links and/or buttons. With :method => :delete and :confirm => "are ...
5
votes
2answers
941 views

RAILS link_to external site, url is attribute of user table, like: @users.website

I'm working on a website that allows users to create an account. One of the attributes when creating a user is a users personal website. When I try to use the users website like this: <%= link_to ...
5
votes
2answers
811 views

How do i add a span in a link_to with an image

so i have this <%= link_to(image_tag(@model.picture.url(:thumb), :alt => ''), "/pages/you/#{something.id}", {:id => "y_link_#{something.id}"}) %> which works but i need a span in ...
4
votes
3answers
2k views

Why Rails “link_to” does not work for delete action?

In index.html.erb I display all products, and next to each product I have Edit and Delete actions: <% @products.each do |product| %> ... <%= link_to("Edit", ...
4
votes
4answers
1k views

How to mixin and call link_to from controller in Rails?

This seems like a noob question, but the simple answer is eluding me. I need to call link_to in an ActionController method to spit out an HTML link. ActionView::Helpers::UrlHelper.link_to calls ...
4
votes
2answers
1k views

Rails RESTful Routing With '/' and Slugs

I am looking to do something similar a wordpress slug where I have a URL like this while maintaining RESTful routing: http://foo.com/blog/2009/12/04/article-title The reason I am interested in keep ...
3
votes
1answer
39 views

RoR Routes Error: From a link_to built URL, route appears in rake routes

routes.rb resources :project_associations, :only => [:update] rake routes project_association PUT /project_associations/:id(.:format) {:action=>"update", ...
3
votes
3answers
303 views

Rails: Use URL Helper in Observer

I have an observer which looks like this: class CommentObserver < ActiveRecord::Observer include ActionView::Helpers::UrlHelper def after_create(comment) message = "#{link_to ...
3
votes
1answer
180 views

How to put a link into an h1 with haml in rails?

Hi :) I'm new to haml and want something like this: %h1 =link_to "Home" :root How could I realize this? Hope you can help me with this :)
3
votes
2answers
844 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
3answers
388 views

How Rails 3 decides which HTTP verb will be used when clicking on a link generated by “link_to”?

I have two links: <%= link_to("Edit", edit_product_path(product.id)) %> <%= link_to("Delete", product, :method => :delete) %> The generated links are: <a ...
3
votes
2answers
1k views

link_to :action => 'create' going to index rather than 'create'

I am building a fairly simple recipe app to learn RoR, and I am attempting to allow a user to save a recipe by clicking a link rather than through a form, so I am connecting the user_recipe ...
3
votes
1answer
1k views

Syntax for link_to with block in rails3 with :remote=>true and including :class and :id

For the love of god, I've been banging my head on this for hours. Using rails3 rc, 1.9.2. I'm trying to create a link_to that submits an ajax request, with parameters, a class and id, and needs a ...
3
votes
1answer
2k views

ruby-on-rails: link-to using post method but parameters are in the url

I'm using link_to 'My link', path(:arg1 => session[:arg1], :arg2 => session[:arg2],:arg3 => anyobject.id), :method => :post but the html link being generate includes (arg1,arg2,arg3) ...
3
votes
2answers
2k views

Rails: How do I add an additional parameter to resource-based link_to call?

I have a resource defined in routes.rb like so: map.resources :users I like using the cleanest link_to option, which would be: link_to @user I'd like to add an additional parameter to this call, ...
2
votes
1answer
39 views

Rails: changing the default method called on the ActiveRecord::Base object by link_to

I have a gem which is essentially just a bunch of ActiveRecord::Base classes in the gems namespace. For all of them I get the same type of problem. I have the model... module MyGem class User < ...
2
votes
1answer
52 views

Error in link_to in symfony admin generator

I made two List actions. One actually corresponds to the default _new action and other is slightly different. So in generator.yml, I put: list: max_per_page: 10 title: All Posters ...
2
votes
2answers
173 views

Rails, How to create “google like”(URL preview) link_to

I want to create link_to "google like" in Rails. Let me explain. On simple google search page ...
2
votes
2answers
167 views

Adding span tag in Rails link_to

I've looked on SO about how to add a <span> tag but I didn't see an example that placed the <span> where I want using Rails 3 link_to: <a href="#" class="button white"><span ...
2
votes
2answers
103 views

Rails 3 - How do you create a new record from link_to

I'm trying to create a 'tag' functionality which allows a user to "tag" items in which they are interested. Here is my model class tag belongs_to :user belongs_to :item end The corresponding ...
2
votes
1answer
122 views

How to generate a `link_to` URL passing some custom parameters?

I am using Ruby on Rails 3.0.9 and I would like to generate a link_to URL passing some custom parameters. That is, having a articles_path (www.my_web_site_name.com/articles) I would like to generate ...
2
votes
1answer
279 views

'ActionView::Template::Error - No route matches' passing “old style” parameters for a 'link_to' statement

I am using Ruby on Rails 3.0.9 and I had this problem: Trouble on setting the ':controller' parameter for a 'link_to' statement. No one answered with a solution but, trying and re-trying to find and ...
2
votes
2answers
102 views

Rails: set a value using a link

I need help trying to create a link that submits an edit form. Let's say I have a list of objects Object - Color - Own? Ball - Red - false - [button] Hat - Blue - true - ...
2
votes
2answers
59 views

In a Rails app, how can I make a link load in a div as opposed to refreshing the whole page?

I'm still a beginner at web development. It's not my profession. So go easy. I started building a rails app today, and realized it would make my application so much better if I could get certain ...
2
votes
3answers
1k views

Rails: “new or edit” path helper?

Is there a simple and straightforward way to provide a link in a view to either create a resource if it doesn't exist or edit the existing on if it does? IE: User has_one :profile Currently I ...
2
votes
1answer
2k views

Ruby on rails 3 link_to controller and action

I know this is probably a pretty simple concept. I am trying to create a link to a controller and action. For example I have a link in my layout file to update a record when a link is clicked, so I ...
2
votes
2answers
962 views

Rails 2 to Rails 3 : using link_to instead of link_to_remote (including remote and update)

A quick and easy answer I'm sure. I'm upgrading a Rails project from version 2 to version 3 and replacing a load of the link_to_remote with link_to's as per the Rails 3 update. Even something as ...
2
votes
3answers
1k views

How to use the link_to helper to open a popup?

I just want to use link_to to open a popup. I tried something but it doesn't work: <%= link_to 'Create a new company', new_company_path, :popup => ['create_company', ...
2
votes
1answer
809 views

link_to update (without form)

I want a link to update a resource without compiling the form. Can I do it ? In witch way ? I'll let you understand better by pasting my situation" Routes : resources :users do resource :profile, ...
2
votes
1answer
903 views

Button_to in Ruby on Rails bad route

I'm trying to use the buttton_to rails helper. I wrote the following code: <%= button_to 'Edit Item', edit_item_path(@item), :class => 'mark-button' %> and got the following error ...
2
votes
2answers
448 views

ruby on rails link_to newly created page

I've created in rails(3) a new html page in my project model named contact.html.erb and I am interested in linking to it from a different page, i've added the code: <%= link_to 'contact', ...
2
votes
4answers
2k views

link_to with jquery params in rails

I want to make an in-place search in my rails app. I used button_to_remote with prototype, but now I'm using JQuery, so I changed to link_to. This is my code: <%= link_to "Search", {:action => ...
2
votes
1answer
156 views

custom action for a nested resource without adding to routes

This is probably really simple but I have a nested resource lets say: map. resources :book, :has_many => :pages I write an action called "turn" that increases page.count by 1. How do I call this ...
2
votes
3answers
1k views

named routes with devise in Rails 3 haml view

from rake routes I get this in my application new_admin_session GET /admins/sign_in(.:format) {:controller=>"devise/sessions", :action=>"new"} ...
2
votes
2answers
513 views

Rails 3's link_to('&raquo;', url) won't work if it is &raquo; or other entities

because it will not show up as » but will show up as &raquo. Is there a way to show it?
2
votes
1answer
664 views

link_to_remote and link_to in Rails 3

I'm a newbie spanish Rails developer. ¿Can u help me with a problem with Rails? I have an application with RoR 2 and Google maps and i catch X and Y coord to send to a controller. I use :with ...
2
votes
1answer
422 views

Upgrading :with parameter on a link_to_remote in Rails 3

What's the preferred UJS replacement for the Rails RJS helper ':with' parameter on a link_to_remote when upgrading to Rails 3 (using the new unobtrusive link_to... :remote => true syntax). eg. ...
2
votes
5answers
25k views

link_to syntax with rails3 (link_to_remote) and basic javascript not working in a rails3 app?

i am wondering if the basic link_to syntax is completely broken in current rails3 master or if i am doing some wrong syntax here. = link_to "name", nil, :onlick => "alert('Hello world!');" ...
2
votes
2answers
1k views

Using link_to in a class in a Rails helper

I have a rails helper using the structore below, but when I use it I get the message undefined method 'link_to' The helper is arranged as: module MyHelper class Facet def render_for_search ...
2
votes
1answer
1k views

Ruby on Rails link_to internal id

How do i use a link_to inorder to go to a specific (html) ID on a page normally if i wanted to go to the "whatever_id" on a page i could use <a ...
2
votes
2answers
3k views

renaming routes (map, link_to, to_param) in rails

I'm having a little issue...I setup a rails application that is to serve a german website. To make use of Rails' internal pluralization features, I kept all my models in english (e.g. the model ...
1
vote
2answers
36 views

Deleting from a namespace

I have setup a admin namespace in order to access models in the admin area: /admin/pages However i have the following problem i cant get the delete function to work under Admin::PageController for ...
1
vote
1answer
55 views

link_to external URL treated as internal despite starting with http:// (Rails 2)

I'm using link_to "Click Here", "http://www.cnn.com" and its producing a link with the following href "localhost:3000http://www.cnn.com" For some reason, it's not recognizing the http:// as ...
1
vote
2answers
50 views

Rails 3 - Custom link_to helper (with default class and ability to add classes)

I'm trying to hook up a custom helper that has a default class 'pjax' but also retains an ability to add classes where need be. Example: link_to_pjax('pagename', page_path, :class => 'current') ...
1
vote
4answers
116 views

symfony link_to in action

I need to give a link in user feedback(via setFlash method). So In my processForm() function, I want to use link_to but that won't work due to symfony's strict MVC policies. I tried manually writing ...
1
vote
2answers
45 views

Ruby on Rails link_to directing to Index instead of Show

I am having trouble with some Ruby on Rails code. I have a data structure of nested resources (List has_many Tasks and a Task belongs_to a List). On my List.show page, I have the following line of ...
1
vote
1answer
75 views

Adding name value with link_to

I'm using a link_to to create an object in my Rails 3 app. Searching has given me the proper way to use link_to with the :post method, but I'm wondering if using link_to to pass in a name value for my ...
1
vote
2answers
49 views

In Rails, how do I create a link to a new child element when the parent element doesn't exist yet?

I'm building a form to create an exam object that starts with 1 question, and I want to have a button for "New Question" that will AJAX in another question field. The form works great with only the ...
1
vote
0answers
429 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 2 3 4