My upload control works fine for the first file but not the second. The "Select" box still allows me to pick a second file, but no events fire. The files I'm using are very small (a few K) so the first upload is almost instant.
Here is my control:
@(Html.Kendo().Upload() .Name("invoiceUpload") .Multiple(true) .ShowFileList(true) .HtmlAttributes(new { style = "margin-bottom: 10px;" }) .Async(a => a .Save("Invoice", "Upload", new { format = @Model.Format }) .AutoUpload(true) ) .Events(events => events .Success("onSuccess") .Select("onSelect") .Error("error_handler") .Upload("onUpload") ) )
The JS events are just alerts to see if anything is happening, they all fire the first time but none for for subsequent file selects.
I know I'm not giving a ton of info, hoping I'm just missing something obvious. Please let me know if you need more info. Thanks in advance to any responders.