class Forme::InputsWrapper::FieldSetOL
Use a <fieldset> and an <ol> tag to wrap the inputs.
Registered as :fieldset_ol.
Public Instance Methods
call(form, opts) { || ... }
click to toggle source
Wrap the inputs in a <fieldset> and a <ol> tag.
Calls superclass method
Forme::InputsWrapper#call
# File lib/forme/transformers/inputs_wrapper.rb 34 def call(form, opts) 35 super(form, opts){form.tag(:ol){yield}} 36 end