adaptiveModeString
(default: 'none')
If set to auto
and the grid will use adaptive rendering.
Example - enable adaptive rendering auto detect
<div id="grid"></div>
<script>
$("#grid").kendoGrid({
columns: [
{ field: "name" },
{ field: "age" },
{ command: "destroy" }
],
dataSource: [
{ name: "Jane Doe", age: 30 },
{ name: "John Doe", age: 33 }
],
filterable: true,
columnMenu: {
componentType: "modern"
},
adaptiveMode: "auto",
height: 550
});
</script>
In this article