This code works properly in IE8+, but in IE7 it uploads the file twice:
@(Html.Kendo().Upload()
.Name("uploadFile")
.Multiple(false)
.Async(save => save
.Save("DoSomething", "SomeController", new { ... })
.AutoUpload(true))
.Events(events => events
.Upload("...")
.Success("...")
.Error("..."))
)
I also can't disable the upload widget via this command because $("#uploadFile").data("kendoUpload") returns undefined:
$("#uploadFile").data("kendoUpload").disable();
My Kendo.Mvc version is v4.0.30319.
Any ideas?
Thanks!
--Berry
@(Html.Kendo().Upload()
.Name("uploadFile")
.Multiple(false)
.Async(save => save
.Save("DoSomething", "SomeController", new { ... })
.AutoUpload(true))
.Events(events => events
.Upload("...")
.Success("...")
.Error("..."))
)
I also can't disable the upload widget via this command because $("#uploadFile").data("kendoUpload") returns undefined:
$("#uploadFile").data("kendoUpload").disable();
My Kendo.Mvc version is v4.0.30319.
Any ideas?
Thanks!
--Berry