reorderable.rows.clickMoveClick Boolean (default:true)

If set to true (default), when there is a drag column for the items in the Grid, the user will be allowed to reorder rows via click move click interaction as an alternative of the drag and drop one.

Example - enable column reordering

<div id="grid"></div>
<script>
$("#grid").kendoGrid({
  columns: [
    { draggable: true, width: "40px" },
    { field: "name" },
    { field: "age" }
  ],
  dataSource: [
    { id:1, name: "Jane Doe", age: 30 },
    { id:2, name: "John Doe", age: 33 }
  ],
  reorderable: {
    rows: {
      clickMoveClick: false
    }
  }
});
</script>
In this article