columnLock
Fired when the user lock a column.
The event handler function context (available via the this keyword) will be set to the widget instance.
Event Data
e.column Object
A JavaScript object which represents the column configuration.
e.sender kendo.ui.Grid
The widget instance which fired the event.
Example - subscribe to the "columnLock" event during initialization
<div id="grid"></div>
<script>
$("#grid").kendoGrid({
  columns: [
    { field: "id", width: 100, locked: true },
    { field: "name", width: 100 },
    { field: "age", width: 50 }
  ],
  dataSource: [
    { name: "Jane Doe", age: 30, id: 1 },
    { name: "John Doe", age: 33, id: 2 }
  ],
  columnMenu: true,
  columnLock: function(e) {
/* The result can be observed in the DevTools(F12) console of the browser. */
    console.log(e.column.field); // displays the field of the just locked column
  }
});
</script>
Example - subscribe to the "columnLock" event after initialization
<div id="grid"></div>
<script>
function grid_columnLock(e) {
/* The result can be observed in the DevTools(F12) console of the browser. */
  console.log(e.column.field); // displays the field of the just locked column
}
$("#grid").kendoGrid({
  columns: [
    { field: "id", width: 100, locked: true },
    { field: "name", width: 100 },
    { field: "age", width: 50 }
  ],
  dataSource: [
    { name: "Jane Doe", age: 30, id: 1 },
    { name: "John Doe", age: 33, id: 2 }
  ],
  columnMenu: true
});
var grid = $("#grid").data("kendoGrid");
grid.bind("columnLock", grid_columnLock);
</script>
In this article