I have the following piece of code illustrated as below. Was working in my Rails 2 application but having upgraded to Rails 3 it not longer works.
When I render this code, I'm getting like,
<%= radio_button <%= text_field "submission_data", :size => 40 %>
"submission_data", "first_application", "team_lead" %>
Here is my code in view file,
<%= form_for @submission, :url => {:action => 'update', :id => @submission},
:html => {:id => "submission_form", :name => 'submission_form_name'} do |f|%>
<%= render :inline => @submission.cycle.seeker_form,
:locals => { :submission_data => @submission_data } %>
We're using pg as a back-end support.