multipleBoolean(default: true)
Enables (if set to true) or disables (if set to false) the selection of multiple files. If set to false, the user can select only one file at a time.
In an asynchronous configuration, the
multipleoption does not limit the total number of uploaded files.
Example
<input type="file" name="files" id="photos" />
<script>
$("#photos").kendoUpload({
async: {
saveUrl: "http://my-app.localhost/save",
removeUrl: "http://my-app.localhost/remove"
},
multiple: false
});
</script>
In this article