Completed
Last Updated: 07 Jan 2015 10:55 by ADMIN
ADMIN
Ianko
Created on: 14 Jan 2014 09:41
Category: Editor
Type: Feature Request
4
RadEditor's PDF export functionality with PDF header and footer support
Such feature will be a convenient availability for developers to create document templates and easy add HTML specified headers and footers 
3 comments
ADMIN
Ianko
Posted on: 07 Jan 2015 10:55
As of Q3 2014 you can add simple HTML code for footer and header in the exported PDF document. The following sample is a showcase for such a configuration:

<telerik:RadEditor runat="server" ID="RadEditor1" ContentFilters="DefaultFilters, PdfExportFilter">
	<Content>
		<h1>Heading</h1>
		<p>Some content</p>
	</Content>
	<ExportSettings>
		<Pdf>
			<PageHeader>
				<MiddleCell Text="<span style='font-size: 20px;'><strong>Header</strong></span>" TextAlign="Center"/>
			</PageHeader>
			<PageFooter>
				<LeftCell Text="<em>Footer - left cell</em>" TextAlign="Left" />
				<MiddleCell Text="<strong>Footer - middle cell</strong>" TextAlign="Center" />
				<RightCell Text="<a href='http://www.telerik.com/'>Footer - right cell</a>" TextAlign="Right" />
			</PageFooter>
		</Pdf>
	</ExportSettings>
</telerik:RadEditor>
Mangesh
Posted on: 04 Sep 2014 18:36
When do you think such functionality be out or there any other alternative option for it?
honggyu
Posted on: 04 Apr 2014 05:00
I'm also looking forward to having the same functionality as grid export to PDF with header and footer.