provides additional parameters for Request Headers
var vault = new dhx.Vault("vault", {
uploader: {
// obligatory, the path for upload
target: "/upload",
headerParams: {
"firstCustomParam": "customValue",
"secondCustomParam": "customValue",
"thirdCustomParam": "customValue"
}
}
});
added in v4.0
Back to top