Module: Formtastic::Inputs::Base::Stringish

Instance Method Summary collapse

Instance Method Details

#input_html_optionsObject

Overrides standard input_html_options to provide a maxlength and size attribute.



16
17
18
19
20
21
# File 'lib/formtastic/inputs/base/stringish.rb', line 16

def input_html_options
  {
    :maxlength => maxlength,
    :size => size
  }.merge(super)
end

#maxlengthObject



27
28
29
# File 'lib/formtastic/inputs/base/stringish.rb', line 27

def maxlength
  options[:input_html].try(:[], :maxlength) || limit
end

#sizeObject



23
24
25
# File 'lib/formtastic/inputs/base/stringish.rb', line 23

def size
  builder.default_text_field_size
end

#to_htmlObject

This method is abstract.

Override this method in your input class to describe how the input should render itself.



8
9
10
11
12
13
# File 'lib/formtastic/inputs/base/stringish.rb', line 8

def to_html
  input_wrapping do
    label_html <<
    builder.text_field(method, input_html_options)
  end
end

#wrapper_html_optionsObject



31
32
33
34
# File 'lib/formtastic/inputs/base/stringish.rb', line 31

def wrapper_html_options
  new_class = [super[:class], "stringish"].compact.join(" ")
  super.merge(:class => new_class)
end