Thanks,
Richard
25 Answers, 1 is accepted

This feature will be included for the next release. We are based on the Kendo Drawing and they will include it for their release.
Regards,
Peter Filipov
Telerik
Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.

Thanks,
Richard
Yes, that is the plan.
Regards,
Peter Filipov
Telerik
Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.


Example, the page displays a metrics dashboard and I want it to print out on a single page.
The exported PDF could be scaled, so when your page is exported you could print it on every page size. You do not need to set paper size in the export settings. Before you print it e.g. in the Adobe reader you need to specify the size.
Regards,
Peter Filipov
Telerik
See What's Next in App Development. Register for TelerikNEXT.

Roger.
I have quite a few non-technical folks in my customer pool and expect to have many tech-support calls asking why the PDF doesn't print right :(
It looks like I will have to play with the RadDocument and iTextSharp options for setting up the print/size options.
Thanks

Can we get an update on this feature? Q2 is almost over, i just wanted to make sure it's going to make it into the next release. Also when is the next release date?
Thanks

Looks like its in the beta version!
http://demos.telerik.com/aspnet-ajax-beta/client-export-manager/functionality/pdf-multi-page-export/defaultvb.aspx
When can we expect this to be released? thanks!
The Q2 will be next week. In case that you want to review the feature before that, here is a link to our beta demos.
Regards,
Peter Filipov
Telerik

Thanks Peter,
I've messed around with the beta a bit and have a couple questions.
When setting a papersize how can i scale the content to fit? it just cuts off the content if it doesn't fit.
How can I set a pagebreak in long radgrid list? for example say i have 25 items in a radgrid, but only 20 will fit on a printed page, how would i set a pagebreak before the 21st item?
Please review the attached project and let me know if you have any other questions.
Regards,
Peter Filipov
Telerik

Are their plans to provide auto page breaking?
Alternately - is it possible to print the HTML into a PDF using the PDFProcessing engine?

Jer asked: "When setting a papersize, how can I scale the content to fit? it just cuts off the content if it doesn't fit."
Peter's previous response was "You do not need to set paper size in the export settings. Before you print it e.g. in the Adobe reader, you need to specify the size."
Jer asked: "How can I set a pagebreak in a long radgrid list?"
Dan asked: "Are their plans to provide auto page breaking?"
I cannot answer for telerik, but Peters' response to Jer's question and some of my ticket traffic lead to to beleive that the answer lies in a convoluted css styling where you set the css class for the Radgrids footer to the RadClientExportManagers PageBreakSelector class. Then print out only one page at a time with the user navigating to the next page and exporting that next page.
I have posted a Feedback item requesting integration of the RadClientExportManager with PDF processing so there can be some server side modifications of the resulting PDF {like scaling it to a specific page size}. Please comment/like at http://feedback.telerik.com/Project/108

In terms of features/requests for this export - does anyone know if it's possible to automatically put in page numbers (bottom, top, somewhere) when you export to PDF. I've got it all working well for my situation but lack of page numbers on the export is my last hurdle.
Thanks,
Richard

In terms of features/requests for this export - does anyone know if it's possible to automatically put in page numbers (bottom, top, somewhere) when you export to PDF. I've got it all working well for my situation but lack of page numbers on the export is my last hurdle.
Thanks,
Richard
[/quote]
Richard,
I ended up using jquery for the page numbers.
Before exportPDF I use this:
$(".pageBreak").each(function (i) {
div = $("<div>").addClass("pageNumber").text(i + 1);
$(this).before(div);
});
and then after exportPDF:
$(".pageNumber").remove();
This will do all the page numbers except the final page number, which I just have an html element that I show then hide during printing.

In my scenario, I have an HTML rendering of a contract - which may include long text blocks and multiple tables - followed by a signature area. I am currently wrestling with how I would figure out where to insert page-break classes into the code. The HTML was generated previously (in another system) and I am reading it in from the database - and displaying it for signature.
Just to clarify, I am not trying to add page breaks to a single grid. I don't mean to thread-jack - I believe the desired functionality is very similar to the OP's - but the work around for a large grid wouldn't work in my case
Since the ClientExportManager does not place page breaks automatically you will have to manually do this and it could be a tedious task for a contract spanning multiple pages. Exporting page by page will show where the page break has to be placed and as an alternative there are custom solutions, for instance in this thread on stackoverflow, that could help you split the content.
Regards,
Ivan Danchev
Telerik

I can suggest logging auto-paging as a ClientExportmanager feature request on our Feedback Portal.
Regards,
Ivan Danchev
Telerik

An auto page break functionality has not been implemented yet and the control still relies on the PageBreakSelector property.
Regards,
Ivan Danchev
Telerik

I am afraid that the requested functionality is still not offered built-in by the ClientExportManager, but let me propose a solution based on the Kendo Drawing API and this article Multi-Page PDF Output. Here it is https://dojo.telerik.com/ayeRE/3.
Another approach is to use this advice https://www.telerik.com/forums/export-to-pdf-(page-break)#15bzvOjgc0qGzq1XGGxgcg and https://stackoverflow.com/questions/27142775/divide-one-html-page-into-multiple-pages-of-a4.
Best regards,
Rumen
Progress Telerik