tablejQuery
The jQuery object which represents the TreeList table element.
Example
<div id="treelist"></div>
<script>
  var treelist = $("#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 }
    ]
  }).data("kendoTreeList");
  
  // Access the table element
  var table = treelist.table;
  console.log(table);
</script>In this article