I'm building an app where a User has tasks and a task has a location. The tasks and locations are in a nested_form using formtastic_cocoon, which is the formtastic gem with a jQuery extension.

The location.address field is an autocomplete text field searching on addresses that already exist in the database. So when the user selects the address, a hidden location_id in the form is populated.

What I am trying to do is that when the user goes to edit the task, I want it to display the currently selected address, but I don't see anywhere that I can retrieve that value. I can get the location_id, as that is in the task model, but I can't seem to get the associated location.address.

the models are

class Task < ActiveRecord::Base
     attr_accessible :user_id, :date, :description, :location_id

     belongs_to :user
     has_one :location
end

class Location < ActiveRecord::Base
     attr_accessible :address, :city, :state, :zip

     has_many :tasks
end 

then in my form, I have

  <div class="nested-fields"> 
     <%= link_to_remove_association "remove task", f %>
      <div class="searchAddress">
         < input type="text" value="HERE IS WHERE I WANT TO SHOW THE ADDRESS" >
     </div>
   <%= f.hidden_field :location_id %>
   <%= f.inputs :date, description %>
</div>

----------- edited to include all formtastic code ---------------

form.html.erb
<%= semantic_form_for @user, :html=>{:multipart=true} do |form| %>

    <%= form.inputs :username, :photo %>


      <%= form.semantic_fields_for :tasks do |builder | %>

   <%= render 'task_fields', :f => builder %>
  <% end %>
<% end %>

------- end edit -------------- I have tried outputing different manner of 'f', but don't see any reference to the associated locations, yet if I debug User.Task[0].Location outside of the form, I get the correct location details. How do I get that inside the form??

--------- update ------------

getting a bit closer on this. It turns out I can output

<%= debug f.object %>

I get the task object returned. Unfortunately it does not include the location object, just the value of the location_id field.

link|improve this question

63% accept rate
You are in a <%= form_for @task do |f| %>, right ? – LapinLove404 Feb 15 '11 at 17:12
similar, I'm in a semantic_fields_for which is more similar to a fields_for than a form_for – pedalpete Feb 15 '11 at 17:17
using Formtastic ? – LapinLove404 Feb 15 '11 at 17:18
yes, using formtastic_cocoon, which is formtastic with a jQuery extension – pedalpete Feb 15 '11 at 17:38
doesn't f.object.location return the location ? – LapinLove404 Feb 22 '11 at 9:02
feedback

1 Answer

Did you try @task.location.address ?

link|improve this answer
I have tried that, I get an undefined method for 'location' for nil:Nilclass – pedalpete Feb 15 '11 at 17:38
Wouldn't that mean @task is nil ? – LapinLove404 Feb 15 '11 at 17:39
@user.tasks is not nil, @user.task is nil. @user.tasks.location is nil – pedalpete Feb 15 '11 at 17:51
Could you post your complete form code (the formtastic one) ? What object is it for ? – LapinLove404 Feb 15 '11 at 18:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.