Export excel empty cell issue
Export excel empty cell issue
geethunimesh
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.
This discussion has been closed.
Replies
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