Kendo Upload不会在CSHTML中上传模板

时间:2013-11-28 09:53:16

标签: kendo-ui kendo-asp.net-mvc

我正在使用剑道上传,如下所示

@(Html.Kendo().Upload()
            .Name("files")
            .TemplateId("fileTemplate2")
            .Async(a => a
                .Save("Save", "SignOff")
                .Remove("Remove", "SignOff")
                .AutoUpload(true)
            )
            .Events(events => events.Upload("onUpload"))
  )

我的模板就像这样

<script id="fileTemplate2" type="text/x-kendo-template">
                <span class='k-progress'></span>
                <div class='file-wrapper'>                    
                    <h4 class='file-heading file-name-heading'>Name: #=name#</h4>
                    <h4 class='file-heading file-size-heading'>Size: #=size# bytes</h4>
                    <button type='button' class='k-upload-action'></button>
                </div>
</script>

我实际上已将模板放在上传声明之上。但是上传没有加载模板。请帮助我在哪里做错了。

<link href="../../Content/kendo/upload.kendo.common.min.css" rel="stylesheet" />
<link href="../../Content/kendo/upload.kendo.silver.min.css" rel="stylesheet" />
<script src="../../Scripts/kendo/kendocdn.kendo.all.min.js"></script>

1 个答案:

答案 0 :(得分:0)

尝试更新dll。我认为这将解决您的问题。