Hi,
I'm using ASP.NET MVC with Kendo UI v. 2024.2.514 and I'm running into a weird issue when exporting a grid to PDF.
When I trigger the export, the PDF output shows only the current page of the grid duplicated X number of times.
For example, if I'm on page 2 of a 10-page grid, instead of exporting all ten pages, the PDF contains page 2 repeated 10 times.
I'm enabling the PDF export like this:
.ToolBar(tools => tools.Pdf()) .Pdf(pdf => pdf.AllPages())
Has anyone run into this issue or have any suggestions on what I'm missing here?
Thanks!