我将 MVC 与 Kendo 控件一起使用。
{
@(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)
)
)
在除 IE 之外的所有浏览器中,都有一个动态添加的进度条和百分比范围。如何强制在 IE 中显示进度条或百分比跨度?提前致谢!