columns.exportable.pdfBoolean(default: true)
If set to false the column will be excluded from the exported PDF file.
Example
<div id="grid"></div>
<script>
$("#grid").kendoGrid({
toolbar: ["pdf"],
columns: [
{ field: "productName", title: "Product" },
{ field: "unitPrice", title: "Price" },
{ field: "description", title: "Description", exportable: { pdf: false } }
],
dataSource: [
{ productName: "Tea", unitPrice: 2.5, description: "Premium green tea" },
{ productName: "Coffee", unitPrice: 3.0, description: "Organic coffee beans" }
]
});
</script>
In this article