dataLayoutModeString

Sets the Grid's data layout. Possible values are: stacked, columns.

Example

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