Ar Chron wrote:
> Exqueeze me?
> 
> I'm not sure what your starting point is, but if you begin with 
> something like this (from a simple scaffolded view):
> 
> <% form_for(@team) do |f| %>
>   <%= f.error_messages %>
>   <p>
>     <%= f.label :name %><br />
>     <%= f.text_field :name %>
>   </p>
>   <p>
>     <%= f.label :description %><br />
>     <%= f.text_area :description %>
>   </p>
>   <p>
>     <%= f.submit 'Update' %>
>   </p>
> <% end %>
> 
> Just remove the line  <%= f.label :description %><br />


I don't have any label lines in my code, just:

<%= household.text_area(:notes, :size => "40x8", :class => "notes"  ) %>

the only thing I can see that may affect this is that I'm using 
TaggedHelper. as in:

<% form_for @household, :builder => TaggedBuilder, :url => 
household_path(@household), } do |household| %>

Bob
-- 
Posted via http://www.ruby-forum.com/.

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.

Reply via email to