Method: Formtastic::Inputs::CheckBoxesInput#input_name

Defined in:
lib/formtastic/inputs/check_boxes_input.rb

#input_nameObject



163
164
165
166
167
168
169
# File 'lib/formtastic/inputs/check_boxes_input.rb', line 163

def input_name
  if builder.options.key?(:index)
    "#{object_name}[#{builder.options[:index]}][#{association_primary_key || method}][]"
  else
    "#{object_name}[#{association_primary_key || method}][]"
  end
end