Created
January 25, 2023 10:49
-
-
Save cooljl31/486923dd4d9f3fe66c1d718605fb0538 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Simple form Input class for arrays | |
class ArrayInput < SimpleForm::Inputs::Base | |
def input(_wrapper_options) | |
#override the attribute name for arrays to allow rails to handle array forms | |
input_html_options.merge!({:name => "#{self.object_name}[#{attribute_name}][]"}) | |
@builder.text_field(attribute_name, input_html_options) | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment