我正在使用Kendo UI上传控件,并希望在同步模式下允许多个文件,但在同时添加多个文件时,它们会在同一个订单项中组合在一起。有没有办法在组选择时将每个单独的文件作为自己的行项目?在链接的屏幕截图中,有2个订单项,但我希望有3个订单项;每个文件一个
使用Javascript:
$('#files').kendoUpload({
localization: {
select: 'Select files to upload<br />-or-<br />Drag files here to upload'
},
multiple: true,
showFileList: true,
success: function (e)
{
},
select: function (e)
{
}
});
HTML:
<form method="post" action="/Api/UploadUrl" style="width:100%">
<div>
<input name="files" id="files" type="file" />
<p><input type="submit" value="Submit" class="k-button" /></p>
</div>
</form>
分组的屏幕截图:http://i.imgur.com/sMl8RSl.png
答案 0 :(得分:0)
文件不能列在不同的列表项中。同步上传小部件与应用了multiple attribute的常规<input type="file" />
元素没有区别,这意味着所有文件都会添加到当前输入的FileList。