Class: IRuby::Input::Textarea

Inherits:
Field show all
Defined in:
lib/iruby/input/textarea.rb

Instance Method Summary collapse

Methods inherited from Field

#widget_js

Methods inherited from Label

#widget_label

Methods inherited from Widget

builder, #content, #widget_css, #widget_display, #widget_join, #widget_js

Instance Method Details

#widget_htmlObject



11
12
13
14
15
16
17
18
19
20
# File 'lib/iruby/input/textarea.rb', line 11

def widget_html
  widget_label do
    textarea(
      @default,
      rows: @rows,
      :'data-iruby-key' => @key,
      class: 'form-control iruby-field'
    )
  end
end