You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@PeteMichaud, The :multiple option must be used in conjunction with data-delimeter and should result in an array being submitted rather than multiple values combined into a single delimited string. From the client side it should look the same.
If it is not working like this it would be helpful if you could post a GitHub link to a minimal project implementation replicating the issue.
form_for @product do |f|
f.autocomplete_field :brand_names, autocomplete_brand_name_products_path,
'data-delimiter' => ',', :multiple => true
end
Using the multiple option seems to do nothing and have no effect on the output html. Is this an option that's supposed to be working?
The text was updated successfully, but these errors were encountered: