Skip to content

Commit

Permalink
allow labels to have custom html_options
Browse files Browse the repository at this point in the history
  • Loading branch information
GarstgerUnhold committed Oct 24, 2011
1 parent 472268a commit 6598af4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/tabular_form_builder.rb
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@ def select(field, choices, options = {}, html_options = {})
end

# Returns a label tag for the given field
def label_for_field(field, options = {})
def label_for_field(field, options = {}, html_options = {})
return '' if options.delete(:no_label)
text = options[:label].is_a?(Symbol) ? l(options[:label]) : options[:label]
text ||= l(("field_" + field.to_s.gsub(/\_id$/, "")).to_sym)
text += @template.content_tag("span", " *", :class => "required") if options.delete(:required)
@template.label(@object_name, field.to_s, text,
:class => (@object && @object.errors[field] ? "error" : nil))
{ :class => @object && @object.errors[field] ? "error" : nil }.merge(html_options))
end
end

0 comments on commit 6598af4

Please sign in to comment.