【发布时间】:2013-09-25 18:47:16
【问题描述】:
我为我的MVC Web application 安装了Telerik Kendo UI Suite 的试用版。在我的机器上本地,我可以选择多个文件并同步上传。一切都在我的本地机器/环境上按预期工作。当我将它上传到 Intranet 上的 Test Environment Web Server 时,当我单击选择按钮时,它确实打开了对话框,但它不允许我选择多个文件。只有单个文件。我的许可证即将到货,我将安装完整版,但我很好奇由于试用版,它会禁止我在服务器上一次选择多个文件吗?
<div class="bodyContent">
<span class="leftContent">Load/Result/Log Files: </span><span class="rightContent">
<input name="file" id="file" type="file" />
</span>
</div>
$(document).ready(function () {
$("#file").kendoUpload(
);
$("#file").closest(".k-upload").find("span").text("Select");
$("#file").parent().css({ width: 100 });
});
【问题讨论】:
标签: jquery asp.net-mvc telerik kendo-ui