stickColumn
Sticks a column.
Parameters
column Number|String
The index of the column or the field to which the columns is bound.
Example - stick a column
<div id="grid"></div>
<script>
$("#grid").kendoGrid({
columns: [
{ field: "id", width: 800 },
{ field: "name", width: 400 },
{ field: "age", width: 800 }
],
dataSource: [ { id: 1, name: "Jane Doe", age: 30 }, { id: 2, name: "John Doe", age: 33 } ]
});
var grid = $("#grid").data("kendoGrid");
grid.stickColumn("name");
</script>