lockedTablejQuery
The jQuery object which represents the TreeList locked table element. Available only in a TreeList with locked columns.
Example
<div id="treelist"></div>
<script>
var treelist = $("#treelist").kendoTreeList({
columns: [
{ field: "Name", locked: true },
{ 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 locked table element
var lockedTable = treelist.lockedTable;
console.log(lockedTable);
</script>
In this article