pinnable.bottomArray

An array of data item ID values that will be pinned to the bottom of the Grid on initialization.

Example - pin rows to the bottom on initialization

<div id="grid"></div>
<script>
$("#grid").kendoGrid({
  columns: [
    { field: "name" },
    { field: "age" }
  ],
  dataSource: {
    data: [
      { id: 1, name: "Jane Doe", age: 30 },
      { id: 2, name: "John Doe", age: 33 },
      { id: 3, name: "Jim Doe", age: 25 }
    ],
    schema: {
      model: { id: "id" }
    }
  },
  pinnable: {
    top: [1],
    bottom: [3]
  }
});
</script>
In this article
pinnable.bottom
Not finding the help you need?
Contact Support