I have a Kendo Grid defined with the following toolbar:
toolbar: [
"excel",
"pdf",
{
name: "print",
text: "Print Page"
}
],
Both the excel and pdf exports work great while running on my local development server, which does not use https. However, when I deploy the code to a production server, which uses https, only the excel export works. The pdf export goes through each step of its progress bar but never produces the file for saving. Do you know how to solve this?