【发布时间】:2014-12-16 11:40:29
【问题描述】:
我正在使用带有 Kendo 控件的 MVC。
{
@(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 中显示进度条或百分比跨度? 提前致谢!
【问题讨论】:
标签: file-upload model-view-controller kendo-ui kendo-asp.net-mvc kendo-upload