<kendo:grid-pdf>
Configures the Kendo UI Grid PDF export settings.
Example
<kendo:grid>
<kendo:grid-pdf></kendo:grid-pdf>
</kendo:grid>
Configuration Attributes
allPages boolean
Exports all grid pages, starting from the first one.
Example
<kendo:grid-pdf allPages="allPages">
</kendo:grid-pdf>
author java.lang.String
The author of the PDF document.
Example
<kendo:grid-pdf author="author">
</kendo:grid-pdf>
autoPrint boolean
Specifies if the Print dialog should be opened immediately after loading the document.
Example
<kendo:grid-pdf autoPrint="autoPrint">
</kendo:grid-pdf>
avoidLinks java.lang.Object
A flag indicating whether to produce actual hyperlinks in the exported PDF file.It's also possible to pass a CSS selector as argument. All matching links will be ignored.
Example
<kendo:grid-pdf avoidLinks="avoidLinks">
</kendo:grid-pdf>
creator java.lang.String
The creator of the PDF document.
Example
<kendo:grid-pdf creator="creator">
</kendo:grid-pdf>
date java.util.Date
The date when the PDF document is created. Defaults to new Date().
Example
<kendo:grid-pdf date="date">
</kendo:grid-pdf>
fileName java.lang.String
Specifies the file name of the exported PDF file.
Example
<kendo:grid-pdf fileName="fileName">
</kendo:grid-pdf>
forcePageBreak java.lang.String
Forces the page to break before each element that matches the applied CSS selector.
Example
<kendo:grid-pdf forcePageBreak="forcePageBreak">
</kendo:grid-pdf>
forceProxy boolean
If set to true, the content will be forwarded to proxyURL even if the browser supports saving files locally.
Example
<kendo:grid-pdf forceProxy="forceProxy">
</kendo:grid-pdf>
jpegQuality float
Specifies the quality of the images within the exported file, from 0 to 1.
Example
<kendo:grid-pdf jpegQuality="jpegQuality">
</kendo:grid-pdf>
keepPNG boolean
If set to true all PNG images contained in the exported file will be kept in PNG format.
Example
<kendo:grid-pdf keepPNG="keepPNG">
</kendo:grid-pdf>
keywords java.lang.String
Specifies the keywords of the exported PDF file.
Example
<kendo:grid-pdf keywords="keywords">
</kendo:grid-pdf>
landscape boolean
Set to true to reverse the paper dimensions if needed such that width is the larger edge.
Example
<kendo:grid-pdf landscape="landscape">
</kendo:grid-pdf>
paperSize java.lang.Object
Specifies the paper size of the PDF document. The default "auto" means paper size is determined by content.Supported values: A predefined size: "A4", "A3" etc; An array of two numbers specifying the width and height in points (1pt = 1/72in) or An array of two strings specifying the width and height in units. Supported units are "mm", "cm", "in" and "pt"..
Example
<kendo:grid-pdf paperSize="paperSize">
</kendo:grid-pdf>
proxyTarget java.lang.String
A name or keyword indicating where to display the document returned from the proxy.If you want to display the document in a new window or iframe, the proxy should set the "Content-Disposition" header to inline; filename="
Example
<kendo:grid-pdf proxyTarget="proxyTarget">
</kendo:grid-pdf>
proxyURL java.lang.String
The URL of the server side proxy which will stream the file to the end user.A proxy will be used when the browser is not capable of saving files locally, for example, Internet Explorer 9 and Safari.The developer is responsible for implementing the server-side proxy.The proxy will receive a POST request with the following parameters in the request body: contentType: The MIME type of the file; base64: The base-64 encoded file content or fileName: The file name, as requested by the caller.. The proxy should return the decoded file with the "Content-Disposition" header set toattachment; filename="
Example
<kendo:grid-pdf proxyURL="proxyURL">
</kendo:grid-pdf>
repeatHeaders boolean
Set this to true to repeat the grid headers on each page.
Example
<kendo:grid-pdf repeatHeaders="repeatHeaders">
</kendo:grid-pdf>
scale float
A scale factor. In many cases, text size on screen will be too big for print, so you can use this option to scale down the output in PDF. See the documentation in drawDOM.
Example
<kendo:grid-pdf scale="scale">
</kendo:grid-pdf>
subject java.lang.String
Sets the subject of the PDF file.
Example
<kendo:grid-pdf subject="subject">
</kendo:grid-pdf>
template java.lang.String
A piece of HTML to be included in each page. Can be used to display headers and footers. See the documentation in drawDOM.Available template variables include: * pageNum * totalPages
Example
<kendo:grid-pdf template="template">
</kendo:grid-pdf>
title java.lang.String
Sets the title of the PDF file.
Example
<kendo:grid-pdf title="title">
</kendo:grid-pdf>
Configuration JSP Tags
kendo:grid-pdf-margin
Specifies the margins of the page (numbers or strings with units). Supported units are "mm", "cm", "in" and "pt" (default).
More documentation is available at kendo:grid-pdf-margin.
Example
<kendo:grid-pdf>
<kendo:grid-pdf-margin></kendo:grid-pdf-margin>
</kendo:grid-pdf>