Displaying 1 result from an estimated 1 matches for "labeledformhelper".
Did you mean:
labeled_form_helper
2006 Jul 11
0
Arbitrary elements in form_for?
...(custom widget)
How can I use form_for to generate this and still have each row styled
by the FormBuilder of my choice? Do I need to extend each FormBuilder
with all of the methods that I might want to use?
I''ve been using the FormBuilders listed in the Rails Recipes book as
well as the LabeledFormHelper from techno-weenie.net
Speaking of LabeledFormHelper, this is listed in its README file:
-----------
<% form_for :person, @person, :url => { :action => "update" } do |f| %>
First name: <%= f.text_field :first_name %>
<% end %>
<form action="upd...