Method: Satis::Forms::Builder#input_array
- Defined in:
- lib/satis/forms/builder.rb
#input_array(method, options = {}) ⇒ Object
307 308 309 310 311 312 313 314 |
# File 'lib/satis/forms/builder.rb', line 307 def input_array(method, = {}) form_group(method, ) do safe_join [ (custom_label(method, [:label], ) unless [:label] == false), render(Satis::InputArray::Component.new(form: self, attribute: method, **)) ] end end |