I have two forms in different places, that produce two different results. What I want to happen is on page load, for certain fields that the data exists, the form automatically populates the form with that data - so if the user pressed submit without entering anything in that field it would submit with the right data.
The one that doesn't work is.
<%= form_for :transaction,
:params => @result && @result.params[:transaction],
:errors => @result && @result.errors.for(:transaction),
:builder => ApplicationHelper::BraintreeFormBuilder,
:url => Braintree::TransparentRedirect.url,
:html => {:autocomplete => "off"} do |f| -%>
<%#= field_set_tag "Customer" do -%>
<%= f.fields_for :customer, @user do |c| -%>
<div><%= c.text_field :first_name, :placeholder => :first_name %></div>
<div><%= c.text_field :last_name, :placeholder => :last_name %></div>
<div><%= c.text_field :email, :placeholder => :email %></div>
<% end -%>
<% end %>
The one that does is:
<%= form_for(resource, :as => resource_name, :url => registration_path(resource_name), :html => { :method => :put }) do |f| %>
<%= f.text_field :first_name, :placeholder => :first_name %><br />
<%= f.text_field :last_name, :placeholder => :last_name %><br />
<%= f.text_field :username, :placeholder => :username %><br />
<%= f.text_field :email, :placeholder => :email %><br />
<%= f.password_field :password, :placeholder => 'Password' %><span class="explanation">(leave blank if you don't want to change it)</span><br />
<%= f.password_field :password_confirmation, :placeholder => 'Password Confirmation' %><br />
<%= f.password_field :current_password, :placeholder => 'Current Password' %><span class="explanation">(we need your current password to confirm your changes)</span><br />
<div class="settings_button">
<%= link_to "Cancel My Account", registration_path(resource_name), :confirm => "This will CANCEL your account and remove all projects and images. Are you sure?", :method => :delete, :class => "pill negative button", :id => "cancel-account" %>
<%= f.submit "Update", :class => "primary button", :id => "update-account" %>
</div>
<% end %>
What you will notice is that both of them have text_field :first_name, :placeholder => :first_name but only second form works.
The first form, in the field, outputs the phrase first_name, and last_name in the :first_name & :last_name fields respectively.
Thoughts ?
form_forto work with both:transactionand@user? – marcamillion Apr 17 '11 at 2:36