-
Couldn't load subscription status.
- Fork 253
Open
Labels
Description
I have the following jquery gems in my Gemfile
gem 'jquery-rails' gem "jquery-ui-rails" gem 'jquery-fileupload-rails'
I added in my application.js
//= require jquery-fileupload/basic
Form is
<%= form_with model: @xyz, html: { multipart: true, id: "fileupload" } do |f| %> <% end %>
and the script is
<script> $(function() { $('#fileupload').fileupload(); }); </script>
I am using activestorage, not carrierwave
Can anyone help me here
