async.autoUpload Boolean
(default: true)
By default, the selected files are uploaded immediately. To change this behavior, set autoUpload
to false
.
Example
<input type="file" name="files" id="photos" />
<script>
$("#photos").kendoUpload({
async: {
saveUrl: "http://my-app.localhost/save",
removeUrl: "http://my-app.localhost/remove",
autoUpload: false
}
});
</script>