Tagged Questions

4
votes
4answers
3k views

Rails AJAX: My partial needs a FormBuilder instance

So I've got a form in my Rails app which uses a custom FormBuilder to give me some custom field tags <% form_for :staff_member, @staff_member, :builder => MyFormBuilder do |f| %> [...] ...
1
vote
0answers
160 views

Using custom form builders with nested models in Ruby on Rails

I'm using nested model form technique from Railscast 197 (ASCIIcast here). But I'm running into a problem with my setup, I need to use a custom form builder for one of my nested models' partials. ...
1
vote
1answer
269 views

Rails Test helper method accepting ActionView::Helpers::FormBuilder object

I'm trying to write a test for a helper method that accepts a form helper object, but I don't know how to create a form object within the test. /app/views/blahs/edit.html.erb <% form_for :blahs ...
1
vote
1answer
747 views

fields_for form builder object is nil

Any way to access a nested form_bulder.object? ## controller @project = Project.new @project.tasks.build form_for(@project) do |f| f.object.nil? ## returns false fields_for :tasks do |builder| ...
0
votes
1answer
130 views

Text fields from array in Rails

I'm trying to generate a set of text fields for an array using Rails 2.3. I have an array in my controller (which is not part of the model), and I'd like to make a text field for each entry. The array ...
0
votes
2answers
479 views

fields_for and wrong number of arguments (0 for 1) error

Amateur rails programmer struggling to use the fields_for form builder. My rails application (on v=2.3.11) tracks laboratory protocols and the animals used on those protocols (their weights, etc). ...
0
votes
2answers
225 views

How do I get the HTML 'name' attribute a rails form builder will generate for a certain field?

When you've got a form field such as this: <%= f.text_field :last_name %> it will generate this in HTML: <input id="person_last_name" name="person[last_name]" size="30" type="text" /> ...