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.withCredentials
is 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