In my excelExport JavaScript function for my Kendo Grid definition I am requesting the merge of two cells using:
sheet.mergedCells = []; sheet.mergedCells.push("A2:A3");
On the created spreadsheet I do get a merged cell at A2 spanning two rows, but the cell that was at A3 (and all of the cells to the right of it) get shifted right instead of being absorbed by the merge.
So I now want to delete the cell at A3. But I can't find any way to select/delete cells using this api.
Any thoughts on how to delete that cell?