Skip to content

Instantly share code, notes, and snippets.

@MarkPochert
Created November 30, 2010 21:37
Show Gist options
  • Save MarkPochert/722459 to your computer and use it in GitHub Desktop.
Save MarkPochert/722459 to your computer and use it in GitHub Desktop.
WORK:
<%= form_for @user do |f| %>
<div class="field">
<%= f.label :street %><br />
<%= f.text_field @user.address.street %>
</div>
<% end %>
DONT Work
<%= form_for @user do |f| %>
<div class="field">
<%= f.label :street %><br />
<%= f.text_field :address.street %>
</div>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment