excel.filterable Boolean
(default: false)
Enables or disables column filtering in the Excel file. Not to be mistaken with the grid filtering feature.
Example - enable filtering in the output Excel file
<div id="grid"></div>
<script>
$("#grid").kendoGrid({
toolbar: ["excel"],
excel: {
filterable: false
},
dataSource: {
transport: {
read: {
url: "https://demos.telerik.com/kendo-ui/service/products",
dataType: "jsonp"
}
},
pageSize: 10
},
pageable: true
});
</script>