This is a migrated thread and some comments may be shown as answers.

Errata for 2016.2.504: Exported Excel file has grid lines disabled

0 Answers 105 Views
Grid
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Kendo UI
Top achievements
Rank 1
Kendo UI asked on 04 May 2016, 03:20 PM

The official 2016 Q2 Release (2016.2.504) release will export Excel files with grid lines disabled.
The change is not intentional and will be reverted in the following hotfix and service pack releases.
As a workaround you can turn on the grid lines explicitly in the ExcelExport event:

$("#grid").kendoGrid({
...
 
    excelExport: function(e) {
        e.workbook.sheets[0].showGridLines = true;
    }
});

Apologies for the caused inconvenience.



Tags
Grid
Asked by
Kendo UI
Top achievements
Rank 1
Share this question
or