Hello,
I have the below Use Case where:
I need to pass the application specific parameters to the server with proxy enabled.
Below is the sample code that has the proxyParameters. Using these proxyParameters I would be processing the pdf document on the server.
$("#editor").kendoEditor({
tools: ["pdf"],
pdf:{
filename: "MyDocument.pdf",
proxyURL: "/myProxyURL",
proxyParameters: myParameter,
forceProxy: true,
paperSize: "auto"
},
pdfExport:function(e){
e.preventDefault()
}
});
Could you please help?