Method: #text_area_edit
- Defined in:
 - lib/app/helpers/form_elements/text_area.rb
 
#text_area_edit(object, attribute) ⇒ Object
      30 31 32 33 34 35 36 37 38 39 40 41 42 43  | 
    
      # File 'lib/app/helpers/form_elements/text_area.rb', line 30 def text_area_edit(object, attribute) if defined? Ckeditor cktext_area_tag( attribute, object[attribute], :id => "textarea_#{object.class.name.underscore}_#{object.id}_#{attribute.to_s}", :ckeditor => { :width => '100%', :height => '200px' } ) else text_area_tag attribute, object[attribute], :class => 'attribute_text_area' end end  |