I'm using MVC with Kendo controls.
{
@(Html.Kendo().Upload()
.Name("fileuploaddocs")
.Multiple(true)
.ShowFileList(true)
.Events(events => events.Select("fileuploaddocs_onSelect"))
.Events(events => events.Upload("fileuploaddocs_onUpload"))
.Events(events => events.Success("fileuploaddocs_onSuccess"))
.Events(events => events.Error("fileuploaddocs_onError")
.Async(async => async
.Save("Save", "Document")
.Remove("Remove", "Document")
.AutoUpload(true)
)
)
In every browser, except IE, there is a dynamically added progress bar and percentage span. How can I force to display progress bar or percentage span in IE? Thanks in advance!