Method: Kiss::Form::TextAreaField#element_html

Defined in:
lib/kiss/form/field.rb

#element_html(attrs = {}) ⇒ Object



488
489
490
491
492
493
494
495
496
497
# File 'lib/kiss/form/field.rb', line 488

def element_html(attrs = {})
  (
    'textarea',
    value_string,
    attrs.merge(
      :rows => @_rows ||= 1,
      :cols => @_cols ||= 1
    )
  ) + tip_html(attrs)
end