Hello:
I was wondering if there is a multifile upload control in SP 2013 that I could use? I am specifically looking to display a modal dialog with the control so that users can drag and drop files. If that is not possible, what are my other alternatives?
I am going to use script similar to below to launch the modal dialog:
string url = "/_layouts/15/Upload.aspx?List=" + List.ID.ToString() + "&RootFolder=" + folder.ServerRelativeUrl + "&MultipleUpload=1";
string script = "<script>$(document).ready(function () {OpenUploadDialog('" + url + "', UploadCloseCallback, '" + this._refreshUploadsButton.ClientID + "');});</script>";
Native Upload.aspx page when launched in a modal dialog only let's users to upload single file.Thanks!