I've spent considerable amount of time making a form in simple_form. It had 96 fields! I've split the form in different steps. Each step is made as a partial.

Now I have to prepare the form for show.html.erb . I thought rendering the same partials would just show the form to the user but ofcourse If I try to do that it gives me an error like:

undefined local variable or method `f' for #<#<Class:0xb6d8712c>:0xb6d85f20>

Most of my partials have code like below:

<%= f.input :name, :label=>"Preferred Name",:label_html => {:class => "form_label"}%>

I am just trying to leverage the work I've done instead of coding all fields again for show.html.erb

Are there any tricks I can use here?

link|improve this question

80% accept rate
How did you solve this? Technically show.html.erb doesn't need a form or input fields, so simple_FORM wouldn't apply. However often you want a view that shows data as labels, then the labels "morph" into input fields when you click on Edit. It would be nice if simple_form offered a way to render the same partial in "show" and "edit" modes. – Mark Berry Mar 2 at 23:04
feedback

1 Answer

up vote 0 down vote accepted

You should be sending show.html.erb's form_for builder variable when rendering the partial:

#show.html.erb
<%= simple_form_for @something do |builder| %>
  <%= render :partial => 'somepartial', :locals => { :f => builder } %>
  ...
<% end %>

#_somepartial.html.erb
<%= f.input :name, :label=>"Preferred Name",:label_html => {:class => "form_label"} %>
link|improve this answer
great! that works. however, data shows inside textfields. this will work for my edit.html.erb. Any way to show it as data and not textfields using the same partial? – Omnipresent May 6 '11 at 16:35
Pass in { ... , locals => :some_variable => @something} and do <%= some_variable.name %>. Alternatively, <%= f.object[:name] %> in the partial might work (I have not tried it). But I personally prefer passing in the variable explicitly. – Zabba May 6 '11 at 16:37
I didn't understand. you mean change _somepartial.html.erb to have <%= some_variable.name%> instead of simple_form code of ...<%= f.input :name, :label=>"Preferred Name"... but that will involve me changing the whole partial. – Omnipresent May 6 '11 at 16:44
What do you mean by "show it as data and not textfields"? In the edit partial, if you want to render a input field you use f.input, and if you want to render a non-input field, use somevariable.xx. You would need to change the partial for this. If you want to avoid doing that for whatever reason, I suppose using jQuery to prevent editing the input field and then using CSS to make it look like it's not a input field would be possible to do. Why not just do it the right way the first time? – Zabba May 6 '11 at 16:49
ok. I was seeing if same piece of code in the partial would render an input field when new action is requested and render a non-input field when show action is requested. But it seems like i'll need to have different partials for both. right? – Omnipresent May 6 '11 at 16:51
feedback

Your Answer

 
or
required, but never shown

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