Tagged Questions
The form-for tag has no wiki summary.
9
votes
2answers
2k views
Simple form and hidden input?
Anyone knows how to use simple form with an hidden input?
= simple_form_for @movie do |f|
= f.hidden :title, "some value"
= f.button :submit
That results in this error
undefined method ...
9
votes
1answer
11k views
Rails form_tag form writing - with non-active record model
I'm somewhat of a Rails newbie. I'm writing a couchrest-rails app, so am not using activerecord for this model. I just figured out that that means that
form_for(@model)
won't work. I'm trying ...
8
votes
2answers
1k views
Ruby on rails: singular resource and form_for
I want user to work with only one order connected to user's session. So I set singular resource for order
routes.rb:
resource :order
views/orders/new.html.erb:
<%= form_for @order do |f| %>
...
7
votes
2answers
2k views
STI and form_for problem
I am using Single Table Inheritance for managing different types of projects.
Models:
class Project < ActiveRecord::Base
end
class SiteDesign < Project
end
class TechDesign < Project
end
...
5
votes
1answer
5k views
Nested resources in namespace form_for
Problem
The form_for helper incorrectly determines the path to my nested resource inside of a namespace. The models in question are: Forum::Thread and Forum::Reply respectively, located in a ...
5
votes
4answers
6k views
form_for with nested resources
I have a two-part somewhat noob question about form_for and nested resources. Let's say I'm writing a blog engine and I want to relate a comment to an article. I've defined a nested resource as ...
5
votes
2answers
4k views
Attaching onClick event to Rails's link_to_function
How do I attach an onclick event to a link_to_function such that clicking on the event refreshes an element on the page (using partials)?
When the user clicks the generated link, I'd like to refresh ...
4
votes
2answers
384 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| %>
...
...
3
votes
2answers
307 views
Rails: Using form_for multiple times (DOM ids)
I would like to use the form_for helper multiple times for the same model in the same page. But the input fields use the same ID attribute (in the HTML), so clicking on the label of a field in another ...
2
votes
1answer
23 views
one-to-many form with checkboxes
I have a one to many relationship between Admins and Users.
Admin has_many :users
Admin accepts_nested_attributes_for :users
User belongs_to :admin
I'd like the admin edit form to include a list ...
2
votes
1answer
26 views
Error using rails Mail_form gem: “uninitialized constant Mailform”
So, I've checked all the existing answers to similar questions here on stackoverflow and elsewhere, but cannot get the mail_form gem to work as advertised.
Here's the setup: I'm trying to create a ...
2
votes
1answer
62 views
:disabled field not working in fields_for
I'm trying to add a disabled drop-down box to my table, which I will eventually make conditional.
However, disabled doesn't seem to be added to the line when it is run.
If I inspect the element in ...
2
votes
1answer
342 views
form_for wrong number of arguments (3 for 2) since upgrade to rails 3.1
this form_for used to work before I ported my application to rails 3.1
<div class="form-box" style="padding-left:1em;">
<%
action = @existing_mass.nil? ? "add_to_power_plant": ...
2
votes
1answer
247 views
nested form with polymorphic models
I'm making an app with the following attributes, and I'm working on a creating a single form to be able to save a goal, a goal's tasks, a goal's milestones, and a milestone's tasks.
...
2
votes
1answer
628 views
Rails not editable text field
I have a form_for written in the following manner:
<div class="field">
<%= location.label :city %>
<%= location.text_field :city, :disabled=>true%>
</div>
<div ...
2
votes
2answers
252 views
How do I make checkboxes for a has_many :through association using the form builder?
Want to do a checkboxes for has_many :through. Railscast in 2007 recommends this: check_box_tag "product[category_ids][]", category.id, @product.categories.include?(category). Is this still relevant ...
2
votes
2answers
1k views
Latest Rails 3: ActionView::Template::Error (couldn't parse YAML at line 105 column 13)
I have recently encountered into a weird problem or Rails 3, possibly ever since the new rubygems 1.5 update. Basically when I deploy my program to nginx with passenger 3.0.2, I have 500 page ...
2
votes
4answers
2k views
Rails 3 nested resource route problem as form_for
I have nested resources like this in my routes.rb - (my rake:routes gist)
namespace(:admin) do
resources :restaurants do
resources :menus
resources :menu_items
end
end
In the ...
2
votes
2answers
3k views
Rails hidden field in form_for not sending parameters to controller
Hey Guys I have a form_for I'm making in my view helper that is going to let one user promote another user from a group.
def promote_button_for(group, user)
membership = group.get_membership( ...
2
votes
1answer
376 views
formtastic - subset of values in accepts_nested_attributes_for
I have a model:
class Contact < ActiveRecord::Base
has_many :phones
accepts_nested_attributes_for :phones
end
I want to build 50 phone #s that users can add (there may already be phones 1 or ...
2
votes
1answer
779 views
2
votes
4answers
741 views
form_for and scopes, rails 3
Hi
I have a problem due to scopes and the form_for helper in rails 3.
The routes - file looks like this:
scope "(/:tab)" do
resources :article
end
The form looks something like this:
<%= ...
2
votes
2answers
175 views
Routing problem with calling a new method without an ID
I'm trying to put together a form_tag that edits several Shift objects. I have the form built properly, and it's passing on the correct parameters. I have verified that the parameters work with ...
2
votes
1answer
602 views
Ruby on Rails : symbol as argument in form_for
I understand what is passed to the form_for method when doing something like :
<% form_for(@user) do |f| %> ... <% end %>
if @user is set in the controller. This is pretty obvious.
But ...
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 ...
2
votes
2answers
384 views
Rails, One Model, Many Screens
I have a model with many fields (nearly 40). The client wants the fields divided among multiple screens. The model also has a few has_manys that should look like they are part of the same model.
How ...
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
25 views
Inject a form_for @model from a js.erb file?
I am trying to figure out how to inject Rails 'form_for' helpers from a js.erb file that is called using ajax (:remote => true).
I am dynamically bringing up information about bands that a user ...
1
vote
2answers
64 views
Rails, STI and 'becomes' - f.object.errors not showing in view
My question is: why doesn't .becomes pass errors over to the new object? Isn't this the expected behaviour?
I have the following single table inheritance classes in a rails app:
class Document ...
1
vote
2answers
48 views
Rails 3.0.10, customer routes, post and form_for tag
I have this in my routes:
resources :events do
collection do
post 'moderate'
end
end
Rake routes tells me:
moderate_events POST /events/moderate(.:format) {:controller=>"events", ...
1
vote
2answers
72 views
Rails 3 form uses “edit” instead of “update” when the form is submitted
I have a problem with my form in Rails 3. The forms work if I create something, but if I try to update something, they fail. In this exmaple I tried to update the user settings, like name, mail etc. ...
1
vote
2answers
51 views
How do I make form_for to complete with the previously submitted data when validation fails?
Given that I have a large form
When the user submits it
And the validation of the data fails
Then the user is redirected to the previous page again
And the form should contain the data that the user ...
1
vote
2answers
150 views
How to upgrade the :update=>'div_id' option of remote_form_for from Rails 2 to Rails 3?
I can't figure out how to upgrade this code from Rails 2 to Rails 3:
<% remote_form_for(item, :update => 'div_id') do |f| %>
...
I tried this:
<%= form_for :item, :remote => true, ...
1
vote
1answer
62 views
form_for - error accessing a controller variable in the view (rails 3)
I have a very simple model/view but for some reason I can't seem to access the new record variable and therefore get the error:
undefined method `hash_for_checklists_path' for # ...
1
vote
1answer
86 views
How can I update only a single field of a user profile in Rails 3?
I'm adapting the authentication system from Rails 3 Tutorial by Michael Hartl to better learn about rails before (most likely) switching to a system like authlogic or devise. My authentication system ...
1
vote
2answers
519 views
Mongoid embeds_many with Rails fields_for
I have a model like this:
class Search
include Mongoid::Document
embeds_many :terms
accepts_nested_attributes_for :terms
end
class Terms
include Mongoid::Document
embedded_in :search, ...
1
vote
0answers
135 views
How to customize formtastic attribute :as=>:check_boxes
my problem is that I try to customize the formatastic view. But before I go into detail, I'll explain my model.
I have 2 objects with a n:m relation Shop and Category
Shop model looks like that:
...
1
vote
1answer
147 views
How do you use number_to_phone in Rails 3?
I am storing phone number in database as "1234567890".
How do can you use number_to_phone to display the number nicely in a form as "(123) 456-7890"?
I tried the following but it showed just the ...
1
vote
1answer
116 views
Changing the text on a label in form_for
I have this code in my view (for the "debate" class):
<%= form_for(@debate) do |f| %>
...
<%= f.label :proposition, :body %>
...
<% end %>
and this in my en.yml:
helpers:
...
1
vote
1answer
207 views
Nested attribute not saving in a form with polymorphic associations
I'm trying to make an app where a user can save goals, milestones for those goals, tasks for the milestones, and tasks for the goal itself. I'm using polymorphic associations, but making a form to ...
1
vote
1answer
77 views
Saving data from select_tag
Trying to save data from a form to the database.
Using the select_tag
<%= select_tag :size, options_from_collection_for_select(@plan, 'name', 'size') %>
Everything is fine, it grabs both size ...
1
vote
1answer
112 views
form for nested resource
I have gone through tons of the form_for nested resource questions and can't get any of the solutions to work for me. I figured its time to ask a personalized question.
I have two models, jobs and ...
1
vote
1answer
399 views
Rails 3 rendering form partial in another controller
I have a form partial for a namespaced and nested resource ("blog/posts/comments") which so far has been a pain to get working properly. I managed to get it working for the "new" and "edit" actions ...
1
vote
1answer
518 views
Rails 3 form_for Nested Routes
I`m trying to do a form_for with nested routes following the example of Blog and Comments from Ruby Guide(http://guides.rubyonrails.org/getting_started.html#adding-a-route-for-comments).
I`m doing an ...
1
vote
0answers
132 views
rails 3 client side prototype validation
I can't seem to get js validations working on a form_for in Rails 3. Here's what I've got :
<% form_for(:act, :remote => true,
:url => act_create_path, :condition => ...
1
vote
2answers
240 views
Rails: need help displaying a form_for one model in the view of another model
I have two models, Character and Statistic. Their relationship is Character has_one Statistic and Statistic belongs_to Character.
I've generated scaffolds for both models and what I want to do is be ...
1
vote
1answer
176 views
Ruby on Rails form_for post to database not working for one column but is for the others in same table
This is my first Rails project. For some reason, I can't post to one column in my database, although the other columns in the same table work out fine. (I also couldn't populate that column using the ...
1
vote
0answers
184 views
Problem using a form with nested routes in rails 3
I have a database structure where my Articles have many People (through a join, but that is working fine)
What I would like to happen is that when people create an article they can at the same time ...
1
vote
1answer
185 views
Form input attributes
i work on my Ruby on Rails application and i'm new to Rails.
I use "form_for tag".enter code here
<%= f.label :password %>
<%= f.password_field :password%>
I need to add ...
1
vote
2answers
2k views
how to set default value of form_for select
I would like to know how to set default value on form_for select.
My code goes like this:
<%= form_for(@user) do |f| %>
.
.
.
<div class="field">
<%= f.select(:user_group_id, ...