Dropzone.js inside Modal does not work

后端 未结 1 1014
天涯浪人
天涯浪人 2021-01-04 11:40

I\'m using dropzone.js to upload files to the server. I included the js and css files and the \"drag zone\" is within a modal window that opens on the click of a button (the

相关标签:
1条回答
  • 2021-01-04 12:17

    You should subscribe to the shown.bs.modal event this event is fired when the modal has been made visible to the user. Initialize the Dropzone in this event.

    $('#myModal').on('shown.bs.modal', function (e) {
      // Initialize Dropzone
    });
    
    0 讨论(0)
提交回复
热议问题