lockedContentjQuery

The jQuery object which represents the TreeList locked content 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 content element
  var lockedContent = treelist.lockedContent;
  console.log(lockedContent);
</script>
In this article
lockedContent
Not finding the help you need?
Contact Support