class UiBibzInputs::UiFileFieldInput
Public Instance Methods
input(_wrapper_options)
click to toggle source
# File lib/ui_bibz/inputs/ui_bibz_inputs/ui_file_field_input.rb, line 7 def input(_wrapper_options) UiBibz::Ui::Core::Forms::Files::FileField.new(input_attribute_name, options, input_html_options).render end
input_attribute_name()
click to toggle source
Calls superclass method
UiBibzInputs::BaseInput#input_attribute_name
# File lib/ui_bibz/inputs/ui_bibz_inputs/ui_file_field_input.rb, line 11 def input_attribute_name options[:multiple] ? "#{super}[]" : super end