kendo ui - KendoEditor export PDF Tool Call Back Function passing additional parameters -


have requirement content of editor has exported server pdf along additional parameters. , on call need re load screen.

have below code kendo documentation.

$("#editor").kendoeditor({ tools: ["pdf"], pdf: {     filename: "newdocument.pdf",     proxyurl: "myrestservice/savepdf",     forceproxy: true,     papersize: "auto" }}); 

i looking out thing below passing additional parameters.

$("#editor").kendoeditor({ tools: ["pdf"], pdf: {     filename: "newdocument.pdf",     proxyurl: "myrestservice/savepdf",     forceproxy: true,     myadditionalparams: loggedinuserid , other stuff of parameters     papersize: "auto" }}); 

at same time call function once pdf proxy completed should refreshing screen without downloading anything.

any suggestions?


Comments

Popular posts from this blog

inversion of control - Autofac named registration constructor injection -

verilog - Systemverilog dynamic casting issues -

ios - Change Storyboard View using Seague -