module FormtasticBootstrap::Inputs::Base::Errors

Public Instance Methods

error_first_html(inline_or_block = :inline) click to toggle source
# File lib/formtastic-bootstrap/inputs/base/errors.rb, line 31
def error_first_html(inline_or_block = :inline)
  error_class = if inline_or_block == :inline
    options[:error_class] || builder.default_inline_error_class
  else
    options[:error_class] || builder.default_block_error_class
  end
  template.content_tag(:span, Formtastic::Util.html_safe(errors.first.untaint), :class => error_class)
end
error_html(inline_or_block = :inline) click to toggle source
# File lib/formtastic-bootstrap/inputs/base/errors.rb, line 8
def error_html(inline_or_block = :inline)
  errors? ? send(:"error_#{builder.inline_errors}_html", inline_or_block) : ""
end
error_list_html(ignore) click to toggle source
Calls superclass method
# File lib/formtastic-bootstrap/inputs/base/errors.rb, line 21
def error_list_html(ignore)
  super()
  # error_class = options[:error_class] || builder.default_error_list_class
  # list_elements = []
  # errors.each do |error|
  #   list_elements << template.content_tag(:li, Formtastic::Util.html_safe(error.html_safe))
  # end
  # template.content_tag(:ul, Formtastic::Util.html_safe(list_elements.join("\n")), :class => error_class)
end
error_none_html(ignore) click to toggle source
# File lib/formtastic-bootstrap/inputs/base/errors.rb, line 40
def error_none_html(ignore)
  # super
  ""
end
error_sentence_html(inline_or_block) click to toggle source
# File lib/formtastic-bootstrap/inputs/base/errors.rb, line 12
def error_sentence_html(inline_or_block)
  error_class = if inline_or_block == :inline
    options[:error_class] || builder.default_inline_error_class
  else
    options[:error_class] || builder.default_block_error_class
  end
  template.content_tag(:span, Formtastic::Util.html_safe(errors.to_sentence.html_safe), :class => error_class)
end