pdf.avoidLinksBoolean|String(default: false)
A flag which indicates whether to produce actual hyperlinks in the exported PDF file. You can also pass a CSS selector as an argument. All matching links will be ignored.
Example
<div id="propertyGrid"></div>
<script>
$("#propertyGrid").kendoPropertyGrid({
    pdf: {
        fileName: "PropertyGrid.pdf",
        avoidLinks: true
    },
    model: {
        foo: "bar",
        baz: 5
    }
});
</script>
In this article