class Forme::InputsWrapper::TR

Use a <tr> tag to wrap the inputs.

Registered as :tr.

Public Instance Methods

call(form, opts, &block) click to toggle source

Wrap the inputs in an <tr> tag

   # File lib/forme/transformers/inputs_wrapper.rb
70 def call(form, opts, &block)
71   form.tag(:tr, opts[:attr], &block)
72 end