csv.includeUTF8BOMBoolean(default: false)
If set to true, a UTF-8 BOM (Byte Order Mark) will be prepended to the CSV content. This can be useful for ensuring proper character encoding when opening the file in Excel.
Example - include UTF-8 BOM
<div id="grid"></div>
<script>
$("#grid").kendoGrid({
toolbar: ["csv"],
csv: {
includeUTF8BOM: true
},
dataSource: {
transport: {
read: {
url: "https://demos.telerik.com/service/v2/core/products"
}
},
pageSize: 10
},
pageable: true
});
</script>