async.withCredentialsBoolean(default: true)
Controls whether to send credentials (cookies, headers) for cross-site requests.
If the browser does not support the File API,
async.withCredentialsis ignored.
Example
<input name="files" id="files" type="file" />
<script>
$("#files").kendoUpload({
async: {
saveUrl: "http://my-app.localhost/save",
removeUrl: "http://my-app.localhost/remove",
withCredentials: false
}
});
</script>
In this article