csv.maxRowsNumber(default: 1000000)
The maximum number of rows to include in the CSV export.
Example - limit the number of exported rows
<div id="grid"></div>
<script>
$("#grid").kendoGrid({
toolbar: ["csv"],
csv: {
maxRows: 1000
},
dataSource: {
transport: {
read: {
url: "https://demos.telerik.com/service/v2/core/products"
}
},
pageSize: 10
},
pageable: true
});
</script>