Export excel empty cell issue

Export excel empty cell issue

geethunimeshgeethunimesh Posts: 25Questions: 9Answers: 0

While looping cells, dataTable skip empty cells which cause issues.
$('row', sheet).each(function () {
$(this).find('c').each(function () {
console.log($(this).index())
});
});
When I add a style to particular cell index, it will break if an empty cell comes.

Replies

  • allanallan Posts: 61,665Questions: 1Answers: 10,096 Site admin
    edited September 2017

    Also covered in this thread.

    Looks like it was caused by this commit. I'm certain that was added at the request of a github issue or forum post but I can't find it now... Either way, yes this is something that needs to be done.

    Allan

This discussion has been closed.