Hi,
I am trying to create a custom button "Reupload" for kendo upload. The button should reulodad selected files in case of error during the previous upload.
somthing like this:
....
, error: function (e) {
if ((e.XMLHttpRequest.status != null) && (e.XMLHttpRequest.status == 500))
{
this.wrapper.find(".k-file").removeClass("k-file-error");
$("#reupload_btn).click(function () {
doSomething.....
});
}
It's possible to create a similar behavior?
My version of kendo UI is v2014.1.416.