module FormtasticBootstrap::Inputs::Base::Wrapping

Public Instance Methods

control_group_div_wrapping() { || ... } click to toggle source
# File lib/formtastic-bootstrap/inputs/base/wrapping.rb, line 23
def control_group_div_wrapping(&block)
  template.content_tag(:div, wrapper_html_options) do
    yield
  end
end
generic_input_wrapping() { |].join("\n").html_safe| ... } click to toggle source
# File lib/formtastic-bootstrap/inputs/base/wrapping.rb, line 8
def generic_input_wrapping(&block)
  control_group_div_wrapping do
    label_html <<
    input_div_wrapping do
      if options[:prepend]
        prepended_input_wrapping do
          [template.content_tag(:span, options[:prepend], :class => 'add-on'), yield].join("\n").html_safe
        end
      else
        yield
      end
    end
  end
end
inline_inputs_div_wrapping() { || ... } click to toggle source
# File lib/formtastic-bootstrap/inputs/base/wrapping.rb, line 35
def inline_inputs_div_wrapping(&block)
  template.content_tag(:div, :class => "inline-inputs") do
    yield
  end
end
input_div_wrapping(inline_or_block_errors = :inline) { || ... } click to toggle source
# File lib/formtastic-bootstrap/inputs/base/wrapping.rb, line 29
def input_div_wrapping(inline_or_block_errors = :inline)
  template.content_tag(:div, :class => "controls") do
    [yield, error_html(inline_or_block_errors), hint_html(inline_or_block_errors)].join("\n").html_safe
  end
end
prepended_input_wrapping() { || ... } click to toggle source
# File lib/formtastic-bootstrap/inputs/base/wrapping.rb, line 66
def prepended_input_wrapping(&block)
  template.content_tag(:div, :class => 'input-prepend') do
    yield
  end
end
wrapper_html_options() click to toggle source
# File lib/formtastic-bootstrap/inputs/base/wrapping.rb, line 41
def wrapper_html_options
  opts = (options[:wrapper_html] || {}).dup
  opts[:class] =
    case opts[:class]
    when Array
      opts[:class].dup
    when nil
      []
    else
      [opts[:class].to_s]
    end
  opts[:class] << "#{as}-wrapper"
  opts[:class] << "control-group"
  # opts[:class] << "input"
  opts[:class] << "error" if errors?
  opts[:class] << "optional" if optional?
  opts[:class] << "required" if required?
  opts[:class] << "autofocus" if autofocus?
  opts[:class] = opts[:class].join(' ')

  opts[:id] ||= wrapper_dom_id

  opts
end