Tagged Questions
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
308 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
343 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
630 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
253 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
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
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
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
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
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
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
113 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
1answer
324 views
Rails form not invoking create controller method on POST
I have the following form in my /app/views/password_resets/new.html.erb view
<% form_tag password_resets_path do %>
<label><%= t(:email) %>:</label><br />
<%= ...
1
vote
2answers
617 views
Capitalize f.text_field
I have a form_for and I want that any value inside x.textField appear with the first letter in Upcase (I'm talking about the edit where the textfield are prefilled by the db values).
1
vote
0answers
380 views
form_for for relation table with type of many to many relation
My goal is to display select box for each relation for users and specific project.
All users need to be listed but only project users have some type of relation. Other users have none selected in ...
1
vote
1answer
544 views
Creating a simple drop-down menu in Rails
This really seems simple enough yet for some reason I'm missing something critical.
I have a view:
<% form_for :foo, @foo, :url => {:action => 'bar'} do |f|%>
<%= ...
1
vote
1answer
1k views
Rails 3 form_for ajax call
I have method in my controller:
def work_here
@company = Company.find(params[:id])
current_user.work_apply(current_user, @company)
redirect_to company_path
end
On my view:
<%= render ...
1
vote
1answer
823 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 ...
1
vote
3answers
452 views
Ruby on Rails: Are “form_for(:product, …)” and “form_for(@product, …)” equivalent?
Is
<%= form_for(:product, :url => {:action => 'update', :id => @product.id})) do |f| %>
...
<% end %>
and
<%= form_for(@product, :url => {:action => 'update', :id ...
1
vote
2answers
253 views
How do you set the default value of a field or set of choices in a rails form?
I'm trying attempting the (ought to be) simple feat of setting a radiobox pair in a Rails form_for block to default to "1 hour" when given the choice between "1/2 hour" or "1 hour" as options. The ...
1
vote
1answer
287 views
How do I use multiple “one-to-many” nested attributes in form_for
given the fact that a user has many credit cards and a credit card has many addresses, I am trying to create a form that creates a user and credit card with address all at once
relavent model code:
...
1
vote
2answers
1k views
RoR form_for: Hidden field isn't being included within the object parameter and therefore doesn't work.
I'm using a form to add an entry, and I need to send the id of the current user along with the entry parameters. Here is my form code:
<% form_for(@entry) do |f| %>
<%= f.error_messages ...
1
vote
1answer
188 views
form_form and custom parameter in path_prefix
I have this route:
# config/routes.rb
map.namespace :backshop, :path_prefix => '/:shop_id/admin' do |backshop|
backshop.resources :items
end
And I want to use the form_for magic to reuse the ...
1
vote
1answer
88 views
Ruby on Rails testing: How can I test or at the very least see a form_for's error_messages_for?
I'm working on creating a tests, and I can't figure out why the creation of a model from a form_for is failing in the test but works in real browsers. Is there a straightforward way for me to see ...