pdfObject

Configures the PDF export settings of the TreeList.

Example

<div id="treelist"></div>
<script>
  $("#treelist").kendoTreeList({
    columns: [
      { field: "Name" },
      { field: "Position" }
    ],
    dataSource: [
      { id: 1, Name: "Daryl Sweeney", Position: "CEO", parentId: null },
      { id: 2, Name: "Guy Wooten", Position: "Chief Technical Officer", parentId: 1 }
    ],
    pdf: {
      fileName: "TreeListData.pdf",
      allPages: true
    }
  });
</script>
In this article
pdfRelated Properties
Not finding the help you need?
Contact Support