headerParams

provides additional parameters for Request Headers

object headerParams;

Example

var vault = new dhx.Vault("vault", {
    uploader: {
        // obligatory, the path for upload
        target: "/upload",
        headerParams: {
            "firstCustomParam": "customValue",
            "secondCustomParam": "customValue",
            "thirdCustomParam": "customValue"
        }
     }
});

Related samples

See also
Change log

added in v4.0

Back to top