columns.stickable Boolean
(default: false)
If set to true
the user will be able to stick or unstick the column from the column menu.
Example - stickable columns
<div id="grid"></div>
<script>
$("#grid").kendoGrid({
columns: [
{ field: "id", width: 800 },
{ field: "name", width: 400, sticky: true, stickable: true },
{ field: "age", width: 800 }
],
columnMenu: true,
dataSource: [ { id: 1, name: "Jane Doe", age: 30 }, { id: 2, name: "John Doe", age: 33 } ]
});
</script>