this is a blog by Jeff Perrin, a software developer based in calgary alberta

Rails, Nested Forms and collection_select

Rails, Nested Forms and collection_select

I spent a bit of time on this tonight and thought I'd post about it.

I have a Property model that has a has_one relationship with an Address model. I want to be able to CRUD these two objects as one single entity, however. Luckily, nested forms were recently introduced into Rails 2.3.2 and they seemed like they'd simplify the whole process. Which they did once I put everything together. First, my models:

class Property < ActiveRecord::Base
  def initialize(attributes=nil)
    super
    #we override the initialize method and ensure we always have 
    #an address instance created. This makes sure we don't get any
    #nil reference errors in our forms
    self.build_address unless self.address
  end

  #accepts_nested_attributes_for enables the property's address object
  #to be updated at the same time as the property object
  accepts_nested_attributes_for :address, :allow_destroy => true
end

class Address < ActiveRecord::Base
  has_one :property
  # the Address model has a :city string column that will get populated from
  # a drop-down list in our view
end

This is the basic stuff that any tutorial on nested forms in Rails will tell you about, with the exception of creating a default instance of the address in the property constructor. This is most likely specific to the has_one case. Most of the examples I have seen deal only with has_many, where behind the scenes rails creates an empty list and we'll never end up with nil reference errors in our view. This was the first issue I had to solve. Now let's move on to our new.html.erb view:

<% form_for @property do |f| %>
  <%= f.error_messages %>


    <%= f.label :name, "Title" %>
    <%= f.text_field :name %>
  


    <% f.fields_for :address do |af| %>


        <%= af.label :address_one, "Address One" %>
        <%= af.text_field :address_one %>
      


        <%= af.label :city, "City" %>
        <%= af.collection_select(:city, City.all, :name, :name) %>
      

    <% end %>
  


    <%= f.submit 'Create' %>
  

<% end %>

The trick here is to make sure you qualify the collection_select for cities with the specific fields_for instance. If you don't, the form will render and appear to be ok until you post to the create action or view the generated source:



<%= af.label :city, "City" %>
notice how I've removed the af. qualifier on collection select, and added in a
new parameter :address. This is how most tutorials show you how to use it
The problem with this is that the rendered html does not generate properly for
our nested form scenario
<%=collection_select(:address, :city, City.all, :name, :name) %>

Once you qualify the collection_select helper properly, you should get generated html that looks like this:

City

Lethbridge

Now when you post the form, Rails nested form magic just works. My controller looks just as you'd expect (ie; no different than the non-nested form scenario)

  def create
    @property = Property.new(params[:property])
    respond_to do |format|
      if @property.save
        flash[:notice] = 'Property was successfully created.'
        format.html { redirect_to(@property) }
      else
        format.html { render :action => "new" }
      end
    end
  end

Hopefully I've explained this properly. Feel free to ask questions in the comments if I haven't.

Just Be Honest and Tell the Truth

Just Be Honest and Tell the Truth

Extending clearance

Extending clearance