pdf.fileNameString(default: "Export.pdf")
Specifies the file name of the exported PDF file.
Example - set the default PDF file name
<div id="grid"></div>
<script>
$("#grid").kendoGrid({
    toolbar: ["pdf"],
    pdf: {
        fileName: "Products.pdf"
    },
    dataSource: {
        transport: {
            read: {
                url: "https://demos.telerik.com/service/v2/core/products"
            }
        },
        pageSize: 10
    },
    pageable: true
});
</script>
In this article