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.



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

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

#maxlengthObject



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

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

#sizeObject



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

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.



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

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

#wrapper_html_optionsObject



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

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