Tagged Questions
4
votes
2answers
383 views
routing scope problem with form_for (partial)
Trying to route:
scope :shortcut do
resources :text_elems
end
Using basic scaffold with form partial
*_form.html.erb*
<%= form_for(@text_elem, :shortcut => @shortcut) do |f| %>
...
...
2
votes
2answers
1k views
form_for tag for a resource with two different controllers and RESTful routing
I have a Rails app with a "Route" resource, and a "Route" controller (not to be confused w/ Rails routes). I've set it up so that the site admins (and only the admins) can manage the "Route" resource ...
1
vote
2answers
22 views
How to customise form_for in Rails with different routes?
Problem domain
We have Projects and Milestones
Once created, a Milestone has a Project
Routing
In my original approach, I had something like:
resources :projects do
resources :milestones
...
1
vote
1answer
817 views
Rails 3 : Can't get form_for to work as a 'delete' following the RESTful achitecture => always giving a ROUTING ERROR
I have a very simple render that goes as follow:
<%= form_for(:relationships, :url => relationships_path, :html => {:method => 'delete'}) do |f| %>
<div><%= f.hidden_field ...
0
votes
1answer
94 views
Form_for generates resource path ending with '.1'
I have a resource called :school and when I call form_for(@school) it generates the form action:
/school.1
I'm new to all this so any clues as to why it's doing that would be much appreciated. Sleep ...
0
votes
1answer
390 views
sti and form for problem with rails 3
This is similar to STI and form_for problem but the answer given there doesn't play nice with rails 3 and gives a deprecation warning. However, if I try and use the new syntax, I get a very ...
0
votes
1answer
944 views
ruby on rails / routing-filter / form_for changes html
this question is related to routing-filter.
I have this in my view:
<% form_for :post, :url => {:action => "show"} do |f| %>
which translates in the browser to this:
<form ...