Class: Forme::InputsWrapper::FieldSetOL

Inherits:
Forme::InputsWrapper show all
Defined in:
lib/forme.rb

Overview

Use a <fieldset> and an <ol> tag to wrap the inputs.

Registered as :fieldset_ol.

Instance Method Summary collapse

Instance Method Details

#call(form, opts) ⇒ Object

Wrap the inputs in a <fieldset> and a <ol> tag.



1187
1188
1189
# File 'lib/forme.rb', line 1187

def call(form, opts)
  super(form, opts){form.tag_(:ol){yield}}
end